Skip to content

Commit

Permalink
fix for cellranger output path
Browse files Browse the repository at this point in the history
  • Loading branch information
avikdatta committed Nov 24, 2023
1 parent c122c46 commit c535449
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion igf_airflow/utils/dag34_cellranger_multi_scRNA_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def prepare_cellranger_script(sample_group: str, design_dict: dict) -> dict:
prepare_cellranger_run_dir_and_script_file(
sample_group=str(sample_group),
work_dir=work_dir,
output_dir=os.path.join(work_dir, str(sample_group))
output_dir=os.path.join(work_dir, str(sample_group)),
design_file=design_file,
db_config_file=DATABASE_CONFIG_FILE,
run_script_template=CELLRANGER_MULTI_SCRIPT_TEMPLATE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ def test_prepare_cellranger_run_dir_and_script_file(self):
prepare_cellranger_run_dir_and_script_file(
sample_group="grp1",
work_dir=temp_dir,
output_dir=os.path.join(temp_dir, "grp1"),
design_file=self.yaml_file,
db_config_file=self.dbconfig,
run_script_template='template/cellranger_template/cellranger_multi_run_script_v1.sh')
Expand Down

0 comments on commit c535449

Please sign in to comment.