-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Multi TE support and FBI stability patches (#257)
* Add `echotime` function * Add TE awareness to DWIParser * Add `dwiextract` function Extracts DWI volumes from star:end index * Add filename dictionary * Adjust tensor type thresholds * Add maxFBIBval() method * Fine tune tensor type thresolhds * Add fit regime function Eases full automation of pipeline * Fix #232 by mitigating large values * Incorporate fit regime into main * Fix #255 by introducing overflow mitigation * Introduce proper indexing of b-value shells in FBI/FBWM * Add more proper handling of b-value shells * Add multi-TE support to main * Minor documentation changes * Disable B0 exclusion in IRLLS * Update version to RC10 * Update filenaming algorithm * Add doc files * Update CHANGELOG * Remove unused print statement * Add `--no_rectify` flag * Update CHANGELOG * Update documentation
- Loading branch information
Showing
12 changed files
with
630 additions
and
275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
_dti_ = { | ||
'md': 'dti_md', | ||
'rd': 'dti_rd', | ||
'ad': 'dti_ad', | ||
'fa': 'dti_fa', | ||
'fe': 'dti_fe', | ||
'trace': 'dti_trace' | ||
} | ||
|
||
_dki_ = { | ||
'mk': 'dki_mk', | ||
'rk': 'dki_rk', | ||
'ak': 'dki_ak', | ||
'kfa': 'dki_kfa', | ||
'mkt': 'dki_mkt', | ||
'trace': 'dki_trace' | ||
} | ||
|
||
_wmti_ = { | ||
'awf': 'wmti_awf', | ||
'eas_ad': 'wmti_eas_ad', | ||
'eas_rd': 'wmti_eas_rd', | ||
'eas_tort': 'wmti_eas_tort', | ||
'ias_da': 'wmti_ias_da' | ||
} | ||
|
||
_fbi_ = { | ||
'zeta': 'fbi_zeta', | ||
'faa': 'fbi_faa', | ||
'sph': 'fbi_fodf', | ||
'tract': 'fbi_tractography_dsi', | ||
'awf': 'fbwm_awf', | ||
'Da': 'fbwm_da', | ||
'De_mean': 'fbwm_de_mean', | ||
'De_ax': 'fbwm_de_ax', | ||
'De_rad': 'fbwm_de_rad', | ||
'fae': 'fbwm_fae', | ||
'min_cost': 'fbwm_minCost', | ||
'min_cost_fn': 'fbwm_minCost_FN' | ||
} | ||
|
||
_tensor_ = { | ||
'DT': 'DT', | ||
'KT': 'KT' | ||
} | ||
|
||
_outliers_ = { | ||
'IRLLS': 'outliers_irlls', | ||
'AKC': 'outliers_akc' | ||
} |
Oops, something went wrong.