-
Notifications
You must be signed in to change notification settings - Fork 533
ENH: add interface for MRTrix3's dwidenoise #2568
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
Conversation
Apparently there's a timeout kicking in when downloading the test data
|
I'm seeing similar problems for pip installations. Possibly Circle is getting rate-limited by some recent web server release (I've been able to navigate to the timing-out locations manually). Hopefully it's a temporary condition. |
@effigies do you want me to push a commit to start the ci testing? |
Sure. Maybe just merge master, to avoid having a pointless commit? |
* master: workaround to ICA-AROMA chdir
Codecov Report
@@ Coverage Diff @@
## master #2568 +/- ##
==========================================
+ Coverage 67.13% 67.69% +0.55%
==========================================
Files 333 335 +2
Lines 42547 42822 +275
Branches 5266 5351 +85
==========================================
+ Hits 28566 28990 +424
+ Misses 13279 13153 -126
+ Partials 702 679 -23
Continue to review full report at Codecov.
|
Seems it's failing still for timeout, but for another reason:
|
This happens with that test, sometimes. I think it's related to #2548. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. A couple minor suggestions.
exists=True, | ||
argstr='-mask %s', | ||
position=1, | ||
mandatory=False, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't generally set mandatory=True
or exists=False
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I meant mandatory=False
. I fixed the change here.
usedefault=True, | ||
argstr="%s", | ||
position=-1, | ||
desc="the output denoised DWI image") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using the following:
out_file = File(
name_template='%s_denoised',
name_source='in_file',
keep_extension=True,
argstr="%s",
position=-1,
desc="the output denoised DWI image")
This will also auto-fill out_file
in the output spec, so you can drop _list_outputs
.
@mvdoc Just a bump. Do you have a couple minutes to finish this one up? |
Yes absolutely. Will finish up over the weekend.
…On Fri, May 18, 2018 at 10:44 AM Chris Markiewicz ***@***.***> wrote:
@mvdoc <https://github.com/mvdoc> Just a bump. Do you have a couple
minutes to finish this one up?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#2568 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AF3ZmrQV8PTzvprPaHyTp4pmNek-bh6gks5tzt5dgaJpZM4T1WVO>
.
--
Matteo Visconti di Oleggio Castello
Ph.D. Candidate in Cognitive Neuroscience
Dartmouth College
+1 (603) 646-8665
mvdoc.me || github.com/mvdoc || linkedin.com/in/matteovisconti
|
Changes proposed in this pull request