Skip to content

Commit

Permalink
Update cellranger_multi.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CuijieLu committed Jan 13, 2025
1 parent 8ed41a6 commit fbc806a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/cellranger_multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def gather_config_info(sample_dict, genome, IGO_ID, archive):
config.lirbaries[value] = [fastq_list[value], "Antibody Capture"]
elif key == "ch":
# for case of all ch, fb and vdj exits and doesn't need to make two copies of fb fastq file
if "ch" in sample_dict.keys() and "fb" in sample_dict.keys() and "vdj" in sample_dict.keys():
if "ch" in sample_dict and "fb" in sample_dict and ("vdj_t" in sample_dict or "vdj_b" in sample_dict):
config.lirbaries[value + "_CHMARKER_"] = [fastq_list[value], "Multiplexing Capture"]
else:
config.lirbaries[value] = [fastq_list[value], "Multiplexing Capture"]
Expand Down

0 comments on commit fbc806a

Please sign in to comment.