Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master to dev #2304

Merged
merged 46 commits into from
Apr 13, 2021
Merged

Master to dev #2304

merged 46 commits into from
Apr 13, 2021

Commits on Jan 6, 2021

  1. mrview: fix handling of -focus and -target options

    - The -focus option was not labelled as type_sequence_float(), leading to
      a warning if the first value is negative, e.g.:
    
          mrview: [WARNING] Value "-1,2,3" is being used as the expected argument
          for option "-focus"; is this what you intended?
    
    - It should be allowed to use the -target option multiple times.
    jdtournier committed Jan 6, 2021
    Configuration menu
    Copy the full SHA
    08281d3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1ceeb27 View commit details
    Browse the repository at this point in the history
  3. dwi2response dhollander: fix handling of data with negative values

    This simply clamps values of the input data at zero before taking their
    mean per-shell, which seems to fix issues raised in #2248.
    jdtournier committed Jan 6, 2021
    Configuration menu
    Copy the full SHA
    56683b0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a514564 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    35be5bb View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    02d26de View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2021

  1. Configuration menu
    Copy the full SHA
    d132ea7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d19f3b4 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2252 from MRtrix3/fix_dwi2response_negative_input…

    …_data
    
    dwi2response dhollander: fix handling of data with negative values
    jdtournier authored Jan 11, 2021
    Configuration menu
    Copy the full SHA
    51f0fc6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f2baddd View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2021

  1. Merge pull request #1 from MRtrix3/master

    Rebase to latest master
    sertopexamgio authored Jan 12, 2021
    Configuration menu
    Copy the full SHA
    f0aa07f View commit details
    Browse the repository at this point in the history
  2. Fix particle removing

    Use erase-remove idiom, otherwise particles will be duplicated instead of removed.
    Serxhio Rira committed Jan 12, 2021
    Configuration menu
    Copy the full SHA
    ffcc7a7 View commit details
    Browse the repository at this point in the history
  3. tckglobal: fix parsing of niter

    When tckglobal command was run with -niter 10B the numbers of iterations,
    that run were maximally 1410065408 instead of 10000000000.
    This change fixes this parsing issue.
    Serxhio Rira committed Jan 12, 2021
    Configuration menu
    Copy the full SHA
    fa49f78 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2021

  1. Configuration menu
    Copy the full SHA
    99d6112 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2257 from sertopexamgio/fix_tckglobal_particle_re…

    …moval
    
    tckglobal: Fix bug that caused particles in a voxel to be duplicated when tried to be removed
    dchristiaens authored Jan 13, 2021
    Configuration menu
    Copy the full SHA
    14423cf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    810776a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ff3abc4 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #2258 from sertopexamgio/fix_tckglobal_niter_parsing

    tckglobal: Fix erroneous -niter parsing for values bigger that 1.4e9
    dchristiaens authored Jan 13, 2021
    Configuration menu
    Copy the full SHA
    63d9482 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2021

  1. Configuration menu
    Copy the full SHA
    b351bc2 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2021

  1. Merge pull request #2260 from MRtrix3/variableheteroscedastic_fix

    Inference: Fix for exotic usage
    jdtournier authored Jan 20, 2021
    Configuration menu
    Copy the full SHA
    ffd7409 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8c06a67 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2250 from MRtrix3/mrview_fix_option_handling_focu…

    …s_target
    
    mrview: fix handling of -focus and -target options
    jdtournier authored Jan 20, 2021
    Configuration menu
    Copy the full SHA
    8cd105a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0c22b5b View commit details
    Browse the repository at this point in the history
  5. Merge pull request #2249 from MRtrix3/fix_NA_handling_in_image_statis…

    …tics_parsing
    
    python: fix handling of N/A output in image.statistics()
    jdtournier authored Jan 20, 2021
    Configuration menu
    Copy the full SHA
    e2274ef View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2021

  1. dirorder: Fix segfault

    Downstream of #1800, which introduced the functionality of determining the optimal reordering of directions for all possible selections of first volume, and choosing the optimal reordering from that set. Algorithm produces a segmentation fault if fewer than six input directions. This change forces the first volume in the input to be the first volume in the output in such scenarios (as there is no objective criterion by which to determine which direction is best to use first in this scenario).
    Lestropie committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    035a98f View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2021

  1. diroder: Fix compiler warning

    Comparisons between signed and unsigned integers introduced in 035a98f.
    Lestropie committed Feb 3, 2021
    Configuration menu
    Copy the full SHA
    2841480 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2272 from MRtrix3/dirorder_segfault

    dirorder: Fix segfault
    jdtournier authored Feb 3, 2021
    Configuration menu
    Copy the full SHA
    3eadb34 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2021

  1. add two new command lines option in mrview for tractogram

    valeryozenne committed Feb 25, 2021
    Configuration menu
    Copy the full SHA
    e5b7ff8 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2021

  1. update docs with new command line for mac os compilation

    valeryozenne committed Feb 26, 2021
    Configuration menu
    Copy the full SHA
    0f2c0ec View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2021

  1. Configuration menu
    Copy the full SHA
    1d4af21 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2021

  1. Configuration menu
    Copy the full SHA
    0abb951 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2021

  1. Merge pull request #2290 from valeryozenne/branch_add_two_new_command…

    …_line_option
    
    add two new command lines option in mrview for tractogram
    jdtournier authored Mar 2, 2021
    Configuration menu
    Copy the full SHA
    534343d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    17d4aec View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2021

  1. Fix help page for algorithm module

    For help page interfaces of algorithmm module wrapper scripts, do not insert the prospect of command-line options in between the wrapper name and the algorithm selection, as such usage will not work.
    As reported in #2292.
    Lestropie committed Mar 3, 2021
    Configuration menu
    Copy the full SHA
    6e8a523 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a41dad3 View commit details
    Browse the repository at this point in the history
  3. GLM: Fix all_stats() segfault

    In instances where the input data contain non-finite values (regardless of whether or not such data are excluded from statistical inference via a mask), and at least one F-test is performed, writing the absolute and standardised effect size as NaN (as such cannot be meaningfully calculated for an F-test) was incorrectly indexed, leading to a segmentation fault.
    Lestropie committed Mar 3, 2021
    Configuration menu
    Copy the full SHA
    e301220 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #2291 from MRtrix3/mrview_fix_clip_plane_selection

    mrview: fix glitch in handling of clip plane selection
    jdtournier authored Mar 3, 2021
    Configuration menu
    Copy the full SHA
    b4fccb6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    55f2275 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #2293 from MRtrix3/algorithm_helppage_fix

    Fix help page for algorithm module
    jdtournier authored Mar 3, 2021
    Configuration menu
    Copy the full SHA
    248396e View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2021

  1. Configuration menu
    Copy the full SHA
    2f88cc6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2294 from MRtrix3/glm_allstats_fix

    GLM: Fix all_stats() segfault
    Lestropie authored Mar 4, 2021
    Configuration menu
    Copy the full SHA
    430465d View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2021

  1. mrregister: fix lmax check for nonlinear multi contrast registration

    more verbose error messages in population_template
    maxpietsch committed Mar 30, 2021
    Configuration menu
    Copy the full SHA
    34124b1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d4e1616 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a7d63b1 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2021

  1. Merge pull request #2300 from MRtrix3/registration_mc_lmaxcheck_fix

    mrregister: fix lmax check for nonlinear multi contrast registration
    jdtournier authored Apr 6, 2021
    Configuration menu
    Copy the full SHA
    722d158 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2021

  1. Merge branch 'master' into dev

    Conflicts:
    	.github/workflows/checks.yml
    	lib/mrtrix3/run.py
    Lestropie committed Apr 13, 2021
    Configuration menu
    Copy the full SHA
    a84b249 View commit details
    Browse the repository at this point in the history