-
Notifications
You must be signed in to change notification settings - Fork 20
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
new parameter --setup to preload all DBs and ref files, closes #102 #161
Conversation
Great! Btw, how did you solve the docker/singularity pull issue @fischer-hub ? I remember, that we often recommend to run a pipeline initially w/ only 1 CPU so that especially singularity images are not pulled in parallel which apparently can cause trouble. Can you please resolve the conflicts w/ master? I re-branched this to directly merge into master |
The Conflict is resolved now ! |
withLabel: dammit { container = 'nanozoo/dammit:1.2--b47259e' } | ||
withLabel: dammitDB { container = 'nanozoo/dammit:1.2--b47259e' } | ||
withLabel: basic_tools { container = 'nanozoo/python_rnaseq:3.8--7a7808c' } | ||
withLabel: rattle { container = 'huxleys/rattle:1.0.0--24021329c8b365f21959c56ee1cfb693c768c14e' } |
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.
hm @fischer-hub , will this remove rattle now from the master branch? I think we don't want this :) Sorry if the re-base to master
causes confusion now
smart idea w/ the I tried
Which fails with:
I think this is intended... bc/ the workflow also needs to know which species is targeted. However, what if I don't know yet and just want to install all singularity images (or condas, ...)? But then I tried
and got:
So three things:
|
Ah yes that must have happened when I fixed the read mode and strandedness log info :/ Should be a quick fix tho..
Yes thats actually how I thought of the setup flag too :D must have missed the
Yep good idea |
alright, thx, let me know here when I should give it anther test! |
Works for me now :) !
Also I think I left the |
Nice, yes
works now, but after all singularity images were pulled I tried:
and again some images were pulled, see for example:
The ones with the |
Just replaced the ':' with '-' now in the image file name:
runns through for me with the pulled containers from |
Works also on my end, great @fischer-hub ! Did you also add something about the |
Running
rnaflow
with--setup
will now start the setup sub-workflow and only download the necessary DBs and reference files to run the pipeline.I'm working on additionally pre loading all the docker/singularity images /conda envs but at least for singularity its not yet working because of some parallel pulling issues, lets hope theres a solution for that.Just got the singularity/docker image pull to work!