Skip to content

Commit

Permalink
fixed arc cmd option issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CuijieLu committed Apr 12, 2024
1 parent 189c214 commit 9cd961c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/cellranger.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def lanuch_by_project(sequencer_and_run, project, sample_id_list, sample_genome_
create_library_csv_file(validation[1], validation[2], sample)
tool = CONFIG.config_dict[tag]["tool"]
transcriptome = CONFIG.config_dict[tag]["genome"][sample_genome_dict[sample]]
cmd = "{}--id=Sample_{}{}".format(tool, sample, transcriptome) + "--libraries={}Sample_{}.csv".format(work_area, sample) + CONFIG.OPTIONS
cmd = "{}--id=Sample_{}{}".format(tool, sample, transcriptome) + "--libraries={}Sample_{}.csv".format(work_area, sample) + CONFIG.ARC_OPTIONS
bsub_cmd = "bsub -J {}_{}_{}_ARC -o {}_ARC.out{}".format(sequencer_and_run, project, sample, sample, cmd)
print(bsub_cmd)
subprocess.run(bsub_cmd, shell=True)
Expand Down
1 change: 1 addition & 0 deletions scripts/cellranger_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@

# cellranger command line options
OPTIONS = " --create-bam=true --nopreflight --jobmode=lsf --mempercore=64 --disable-ui --maxjobs=200"
ARC_OPTIONS = " --nopreflight --jobmode=lsf --mempercore=64 --disable-ui --maxjobs=200"

# 10X recipe list for different pipelines
COUNT_FLAVORS = ["10X_Genomics_GeneExpression-3", "10X_Genomics_GeneExpression-5"]
Expand Down

0 comments on commit 9cd961c

Please sign in to comment.