Skip to content

Commit

Permalink
fix(bcl2fastq) Change hard-coded paths in bcl2fastq demux script (#2950
Browse files Browse the repository at this point in the history
…)(patch)

### Fixed

- Change hard-coded paths in bcl2fastq demux script to match the file structure
  • Loading branch information
Vince-janv authored Feb 14, 2024
1 parent e8fb747 commit a5162ec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cg/apps/demultiplex/sbatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
DEMULTIPLEX_COMMAND = {
BclConverter.BCL2FASTQ: """
log "singularity exec --bind \
/home/proj/{environment}/sequencing_data/illumina_novaseq_flow_cells/demultiplexed-runs,\
/home/proj/{environment}/sequencing_data/illumina_novaseq_flow_cells/flow_cells,\
/home/proj/{environment}/sequencing_data/illumina_novaseq_flow_cells/flow_cells/'$SLURM_JOB_ID':/run/user/$(id -u) \
/home/proj/{environment}/sequencing_data/illumina/demultiplexed-runs,\
/home/proj/{environment}/sequencing_data/illumina/flow_cells,\
/home/proj/{environment}/sequencing_data/illumina/flow_cells/'$SLURM_JOB_ID':/run/user/$(id -u) \
/home/proj/{environment}/demux-on-hasta/novaseq/container/bcl2fastq_v2-20-0.sif \
bcl2fastq --loading-threads 3 --processing-threads 15 --writing-threads 3 \
--runfolder-dir {run_dir} --output-dir {unaligned_dir} \
Expand All @@ -16,9 +16,9 @@
touch {demux_completed_file}"
singularity exec --bind \
/home/proj/{environment}/sequencing_data/illumina_novaseq_flow_cells/demultiplexed-runs,\
/home/proj/{environment}/sequencing_data/illumina_novaseq_flow_cells/flow_cells,\
/home/proj/{environment}/sequencing_data/illumina_novaseq_flow_cells/flow_cells/'$SLURM_JOB_ID':/run/user/$(id -u) \
/home/proj/{environment}/sequencing_data/illumina/demultiplexed-runs,\
/home/proj/{environment}/sequencing_data/illumina/flow_cells,\
/home/proj/{environment}/sequencing_data/illumina/flow_cells/'$SLURM_JOB_ID':/run/user/$(id -u) \
/home/proj/{environment}/demux-on-hasta/novaseq/container/bcl2fastq_v2-20-0.sif \
bcl2fastq --loading-threads 3 --processing-threads 15 --writing-threads 3 \
--runfolder-dir {run_dir} --output-dir {unaligned_dir} \
Expand Down

0 comments on commit a5162ec

Please sign in to comment.