...
The nf-core/bactmap workflow requires Nextflow to be installed in your account on the HPC. Find details on how to install and test Nextflow here prepare a nextflow.config file and run a PBS pro submission script for Nextflow pipelines.
...
Code Block |
---|
gzip -c filename.fastq > filename.fastq.gz |
3.b batchalternatively run a loop to compress all fastq files in the folder:
Code Block |
---|
for file in `ls *.fastq`; do echo $file; gzip -c $file > ${file}.gz; done |
...
When specifying the path to the data files, it is more portable to use absolute paths rather than relative paths.
check if ascii characters were added in your samplesheet.csv file:
Code Block |
---|
cat -A samplesheet.csv |
Creating the samplesheet.csv file using Excel can add ascii characters, run the following command to remove them:
...