-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add sample_name
column in samplesheet compatibility
#19
Conversation
SOLVEDWanted to push the changes to see if an issue I had testing locally would be replicated. It looks like there is an issue with |
|
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.
Amazing Job Steven! I love the option to rename the accession files - this will help users keep track of all their files in IRIDA Next!!
I have a few minor suggestions in the review.
I also have one comment about when I tested in IRIDA Next:
When I keep the --rename_with samplename
default set to true
everything works perfectly.
However, when I set the --rename_with_samplename
to false
in IRIDA Next, I end up with three fastq files downloaded.
Which is odd and may cause downstream pipeline confusion (i.e. it becomes an option for selection in mikrokondo
long reads
input options ... )
Good eye @kylacochrane! The issue seems to be due to the fact that it is a accession with both paired and single-end reads (see th ENA) as @apetkau suggested. So the question remains, "Why is renaming the files with I decided to modify the module (we already deviated away from the original nf-core module) here dc85968 |
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.
Thanks so much for all your great work @sgsutcliffe . This is amazing 😄 .
I just have a few in-line comments and I also am going to run this with some test data.
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.
Thanks so much for all your work on this Steven 😄
In response to Kyla's comment, the expected behaviour is to include all 3 fastq files in the case of renaming with sample names and not renaming. Since one of the fastq files is unpaired reads.
This is all working now, as shown in the screenshot below:
Everything is working great. Thanks again 😄
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 amazing Steven! Well done!
Modified the template for input
samplesheet.csv
file to include thesample_name
column in addition tosample
in-line with changes to IRIDA-Next update as seen with the speciesabundance pipeline and staramrnf. What this means is that the output files and thesample
name will be changed tosample_name
if asample_name
is called. Ifftechdatairidanext
is being locally then thesample_name
can be left blank.Made a few changes:
- If
sample_name
is provided it will be prefixed to reads file name- If
sample_name
is provided it will also be included in failure report (if generated)PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).nf-test
to test new featuredocs/usage.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).