We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks for this great resource. fastqc-dump is fairly poorly documented so this workbook was a great starting point for me.
fastqc-dump
I think there is a small error on: https://bioinformaticsworkbook.org/dataAcquisition/fileTransfer/sra.html#gsc.tab=0
parallel --jobs 3 "fastq-dump --split-files --origfmt --gzip {}" ::: SRR.numbers
I believe this will only work if you cat SRR.numbers
cat
parallel --jobs 3 "fastq-dump --split-files --origfmt --gzip {}" ::: $( cat SRR.numbers)
The text was updated successfully, but these errors were encountered:
Yes, $( cat SRR.numbers) would work, or you can use four colons instead of three (as just now suggested in pull request #60).
Sorry, something went wrong.
No branches or pull requests
Thanks for this great resource.
fastqc-dump
is fairly poorly documented so this workbook was a great starting point for me.I think there is a small error on: https://bioinformaticsworkbook.org/dataAcquisition/fileTransfer/sra.html#gsc.tab=0
parallel --jobs 3 "fastq-dump --split-files --origfmt --gzip {}" ::: SRR.numbers
I believe this will only work if you
cat
SRR.numbersparallel --jobs 3 "fastq-dump --split-files --origfmt --gzip {}" ::: $( cat SRR.numbers)
The text was updated successfully, but these errors were encountered: