...
Code Block |
---|
singularity run docker://ncbi/sra-tools:latest fastq-dump -X 1000000 -I --split-files SRR1198667 |
compress the fastq files
Code Block |
---|
gzip -c filename.fastq > filename.fastq.gz |
batch:
Code Block |
---|
for file in `ls *.fastq`; do echo $file; gzip -c $file > ${file}.gz; done |
Getting Started
Download and run the workflow using a minimal data provided by nf-core/bactmap. We recommend using singularity as the profile for QUT’s HPC. Note: the profile option ‘docker’ is not available on the HPC.
...