-
Notifications
You must be signed in to change notification settings - Fork 417
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
Update spring/decompress-module #1573
Conversation
|
Can we instead update the modules upstream and add something like?
|
You mean use your definition of |
No, but add |
Ok, I'll try if I can get that working. It should be possible. |
Because technically using |
@maxulysse and @FriederikeHanssen : So I replaced |
I'd like an updated module in the modules repo. I'd rather avoid patching modules as much as possible for future plans and reasons |
So like that? |
Can we separate the spring modules stuff and whether sarek is able to handle a mixed bag of inputs? Can just have an issue were w collect the testing that has been done on that |
Updating the spring/decompress-module. This PR should change nothing with regards to published files, but the
SPRING_DECOMPRESS
was being called rather confusingly on this input (one sample with two spring-files - one with R1 and the other with R2).In this test, dev-Sarek calls spring on the spring-file containing just the R1-reads (
test_1.fastq.gz.spring
):All reads go to
test_1_R1.fastq.gz
whiletest_1_R2.fastq.gz
doesn't even get written.That is not terrible, but then the same pipeline-run also contains the following call of
SPRING_DECOMPRESS
ontest_2.fastq.gz.spring
which contains all the R2-reads:Here, again, all reads go into
test_2_R1.fastq.gz
and stilltest_2_R2.fastq.gz
isn’t written. That seems suboptimal to me.With the updated module, we get
and
which I find much more sensible.
TO-DO: