I have a samplesheet that starts like this:
sample,fastq_1,fastq_2,strandedness
PSC001_Blood,/netfiles02/mbsr2/AGTC_SingularG4/250213_GAR-0032_0075_2_3B0605T/demux_corrected/Moonshot/PSC001BloodRNA_S1_L001_R1_001.fastq.gz,/netfiles02/mbsr2/AGTC_SingularG4/250213_GAR-0032_0075_2_3B0605T/demux_corrected/Moonshot/PSC001BloodRNA_S1_L001_R2_001.fastq.gz,auto
I even simplified it:
sample,fastq_1,fastq_2,strandedness
PSC001_Blood,PSC001BloodRNA_S1_L001_R1_001.fastq.gz,PSC001BloodRNA_S1_L001_R2_001.fastq.gz,auto
PSC001_Tumor,PSC001FFPERNA_S1_L001_R1_001.fastq.gz,PSC001FFPERNA_S1_L001_R2_001.fastq.gz,auto
But when I try to run rnaseq I get:
nextflow run nf-core/rnaseq -r 3.18.0 -profile apptainer --input rnaseq_samplesheet.csv
–outdir ./rnaseq_output/ --fasta Homo_sapiens_assembly38_renamedHLAContigs.fasta --gtf Homo_sapiens.GRCh38.113.chr.gtf.gz
…
- –input (./PSC001/PSC001_rnaseq_samplesheet.csv): Validation of f
ile failed:
→ Entry 2: Error for field ‘fastq_2’ (/netfiles02/mbsr2/AGTC_SingularG4/250213_GAR-0032_0075_2_3B0605T/demux_corrected/Moonshot/PSC001FFPERNA_S1_L001_R2_001.fastq.gz): FastQ file for reads 2 cannot contain spaces and must have extension ‘.fq.gz’ or ‘.fastq.gz’
→ Entry 2: Error for field ‘fastq_1’ (/netfiles02/mbsr2/AGTC_SingularG4/250213_GAR-0032_0075_2_3B0605T/demux_corrected/Moonshot/PSC001FFPERNA_S1_L001_R1_001.fastq.gz): FastQ file for reads 1 must be provided, cannot contain spaces and must have extension ‘.fq.gz’ or ‘.fastq.gz’
How can I fix this? I think this has happened before with other nextflow versions but I am using the latest (24.10.4)