Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/mskcc/igo-demux
Browse files Browse the repository at this point in the history
  • Loading branch information
darrelln32 committed Aug 9, 2023
2 parents ad07cc6 + 830efea commit 1c0657f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions demux_run_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,12 @@ def demux(ds, **kwargs):
if "DLP" in sample_sheet.recipe_set:
is_DLP = True
dragen_demux = True
<<<<<<< HEAD

# to test for any future sequencers that will need dragen demux
# to test for any future sequencers that will need dragen demux
linux_sequencers = ["AMELIE"]
=======
>>>>>>> 830efea06570521af484fa0a487f4ac9dede4066

demux_command = ""
# -K - wait for the job to complete
if (dragen_demux):
if (dragen_demux) or ("AMELIE" in sequencer_path):
bsub_command = "bsub -K -n48 -q dragen -eo " + output_directory + "/dragen-demux.log "
# same as bcl-convert arguments except: "--bcl-conversion-only true --bcl-only-matched-reads true"
demux_command = bsub_command + "/opt/edico/bin/dragen --bcl-conversion-only true --bcl-only-matched-reads true --force --bcl-sampleproject-subdirectories true --bcl-input-directory \'{}\' --output-directory \'{}\' --sample-sheet \'{}\'".format(sequencer_path, output_directory, samplesheet_path)
Expand Down

0 comments on commit 1c0657f

Please sign in to comment.