-
Notifications
You must be signed in to change notification settings - Fork 6
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 input type fastq.gz
and fq.gz
for Illumina and HiC reads
#96
Conversation
fastq.gz
and fg.gz
for Illumina readsfastq.gz
and fq.gz
for Illumina reads
For this one since For example you can see further on in
The
The next step is we run |
Also note that
|
Thank you very much for your instructions, @tkchafin. I noticed that |
I think we can allow the FASTQ option for both HiC and Illumina, so it might be best to keep the branching inside of align_short (the feature request actually was about HiC #88 ) |
I'm so sorry for the oversight and misunderstanding regarding the FASTQ option for HiC. I've made the changes as per your instructions . Thank you for your review and guidance. |
fastq.gz
and fq.gz
for Illumina readsfastq.gz
and fq.gz
for Illumina and HiC reads
Hi @tkchafin, I've made the changes following your instructions. Could you please help me review them? I really appreciate your guidance. Thank you! |
Hi @reichan1998 thanks for these changes. I've been off sick the past few days, but will have a look soon. |
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.
Great job on these changes @reichan1998! The next step is we should incorporate the new input type into the test profile. If you look in conf/test.config
you can see the settings and sample sheet used when you run with -profile test
. This points you to assets/samplesheet_s3.csv
which gives paths to files saved remotely in AWS S3 buckets.
Since there are already two, would suggest we try converting one of the Illumina samples from CRAM
to FASTQ
so tests will cover both branches of your new align_short.nf
:
mMelMel2,illumina,https://tolit.cog.sanger.ac.uk/test-data/Meles_meles/genomic_data/mMelMel2/illumina/31231_4%231.subset.cram,
You can download the file with curl -L -O mMelMel2/illumina/31231_4%231.subset.cram
and then convert to fastq using samtools fastq
.
First try manually editing the sample sheet to point to your new local file to test, and if this passes you can place the file onto the farm and give me the path and I'll add it to the remotely hosted test files.
I have added the file to the hosted test_data, the path is https://tolit.cog.sanger.ac.uk/test-data/Meles_meles/genomic_data/mMelMel2/illumina/31231_4%231.subset.fastq so you can put this into the assets/samplesheet_s3.csv for mMelMel2,illumina to test the pipeline with the fastq input option for that sample |
To solve issue #88
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).