-
Notifications
You must be signed in to change notification settings - Fork 296
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
singularity build 1.3.1 fails immediately #1534
Comments
Hi. Apologies for the noisy warnings. There was a recent change that we'd hoped would rein them in somewhat, but it looks like we'll need to look more closely. However, these warnings are not errors; did you run into an actual failure at some point? |
The job just failed after 7 seconds and that error log is all that was
produced. I'll try again with an increased verbosity.
--
Joseph M. Orr, Ph.D.
Assistant Professor
Department of Psychological and Brain Sciences
Texas A&M Institute for Neuroscience
Texas A&M University
College Station, TX
…On Mon, Mar 11, 2019 at 1:02 PM Chris Markiewicz ***@***.***> wrote:
Hi. Apologies for the noisy warnings. There was a recent change that we'd
hoped would rein them in somewhat, but it looks like we'll need to look
more closely. However, these warnings are not errors; did you run into an
actual failure at some point?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_poldracklab_fmriprep_issues_1534-23issuecomment-2D471653866&d=DwMCaQ&c=ODFT-G5SujMiGrKuoJJjVg&r=ZKy1VO33u0kvO-PqY1gpb9Ld-AGhtT8c9PAcpsEyp70&m=cmUuEYGygoO7WowlQwiQTqNzNZWd2AhGUpTzmuWhPbo&s=p7uk7ZV6wnGAT77WGkw1Qx7Cu10OyvpxKPEAbuubpno&e=>,
or mute the thread
<https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_notifications_unsubscribe-2Dauth_AILZLySeQKSe9SVL5oFuQhiT2sIQUIezks5vVpoYgaJpZM4bpLQl&d=DwMCaQ&c=ODFT-G5SujMiGrKuoJJjVg&r=ZKy1VO33u0kvO-PqY1gpb9Ld-AGhtT8c9PAcpsEyp70&m=cmUuEYGygoO7WowlQwiQTqNzNZWd2AhGUpTzmuWhPbo&s=MxMqL-L9Q0CcCu9kpyfbm8QATbNOa69VAwFwliWGUWw&e=>
.
|
Ok here's the error:
|
Thanks for the full error. I believe @oesteban can comment on how this is supposed to be handled. |
What is your exact command line? |
|
Thanks! Can you try the following? export TEMPLATEFLOW_HOME=/opt/templateflow
srun singularity run -B $HOME/.templateflow:/opt/templateflow $image $bidsdir $outdir \
participant -w $workdir\
--participant_label $subject --nthreads 30 --omp-nthreads 30 --mem-mb 60000\
--low-mem --ignore slicetiming --output-space T1w fsnative template\
--use-aroma --aroma-melodic-dimensionality -150 \
--fs-license-file $outdir/license.txt -vv --notrack Basically, 1) setting the Once that is tested, you could also give a try to this newer image @chrisfilo just baked last week: https://neurostars.org/t/filenotfounderror-errno-2-no-such-file-or-directory-home-fmriprep-cache/3770/7?u=oesteban In principle, that should work for you as well (and your tests will give us confidence that we really fixed these problems). |
That gave an error
I tried making a .templateflow directory in my home directory and in the singularity image, but kept getting the same message. |
Interesting. It seems that singularity does not like that the target path does not exist previously in the image. What about this?: unset TEMPLATEFLOW_HOME
srun singularity run -B $HOME/.templateflow:/home/fmriprep/.cache/templateflow \
$image $bidsdir $outdir participant -w $workdir\
--participant_label $subject --nthreads 30 --omp-nthreads 30 --mem-mb 60000\
--low-mem --ignore slicetiming --output-space T1w fsnative template\
--use-aroma --aroma-melodic-dimensionality -150 \
--fs-license-file $outdir/license.txt -vv --notrack |
Same thing again, and I confirmed that /home/fmriprep/.cache/templateflow is in the container image, so unfortunately that doesn't seem to be the hang-up.
|
Can you try Chris' image, that could be the only solution
…On Mon, Mar 11, 2019, 13:18 Joseph M. Orr ***@***.***> wrote:
Same thing again, and I confirmed that /home/fmriprep/.cache/templateflow
is in the container image, so unfortunately that doesn't seem to be the
hang-up.
***@***.*** fmriprep$ singularity shell -B /home/.templateflow:/home/fmriprep/.cache/templateflow /apps/psyc/containers/fmriprep/1.3.1
ERROR : Failed to get real path of /var/singularity/mnt/final/home/fmriprep/.cache/templateflow: No such file or directory
ABORT : Retval = 255
***@***.*** fmriprep$ ls -al /apps/psyc/containers/fmriprep/1.3.1/home/fmriprep/.cache/
total 35
drwxr-xrwx 5 joseph.orr psyc 5 Mar 6 12:05 .
drwxr-xrwx 7 joseph.orr psyc 10 Mar 7 15:42 ..
drwxr-xrwx 2 joseph.orr psyc 3 Mar 7 15:42 matplotlib
drwxr-xrwx 2 joseph.orr psyc 3 Mar 7 15:42 pip
drwxr-xrwx 9 joseph.orr psyc 9 Mar 6 12:05 templateflow
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1534 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAkhxioyVvfCMrJgrWqf_nLmHE-v13tXks5vVrotgaJpZM4bpLQl>
.
|
Sure, I'll try that tonight |
I installed Chris's image, but I'm getting a new error now regarding git configuration for templateflow
|
This PR adds a check on ``TEMPLATEFLOW_USE_DATALAD`` (default unset or false) which needs to evaluate to ``True`` in order to use DataLad. This fix addresses nipreps/fmriprep#1534.
I think I fixed this problem with the latest update to TemplateFlow. @oricon, could you build a singularity image from poldracklab/fmriprep:templateflow-0.1.2 ? |
Sorry, different error this time, looks like a S3 AMS issue
|
what is your command line? |
I was using
|
Okay, that would be expected. Can you check without the templateflow boilerplate?
|
I realized that as soon as you asked about command line. The job is currently running (>4 minutes) without errors and has actually progressed to processing the data. Thanks! |
We'll be rolling a new release out very soon! Thanks for your precious feedback! |
Looks like there are some issues with the 1.3.1 build in singularity. I get a TemplateFlow warning and a bunch of DeprecationWarnings as soon as I submit. The standard output shows that BIDS compliance was checked, but there's nothing else in the log. The error log is below. My system has singularity v. 2.6.1.
The text was updated successfully, but these errors were encountered: