Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/cellranger_barcodes_samplesheet.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sample,multiplexed_sample_id,probe_barcode_ids,cmo_ids,description
sample,multiplexed_sample_id,probe_barcode_ids,cmo_ids,description
PBMC_10K_CMO,PBMC_10K_CMO_PBMCs_human_1,,CMO301,PBMCs_human_1
PBMC_10K_CMO,PBMC_10K_CMO_PBMCs_human_2,,CMO302,PBMCs_human_2
4PLEX_HUMAN,Liver_BC1,BC001,,Healthy liver dissociated using the Miltenyi FFPE Tissue Dissociation Kit
Expand Down
2 changes: 1 addition & 1 deletion bin/check_cellrangermulti.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def parse_samplesheet(samplesheet_path):
os.makedirs(ocm_output_dir, exist_ok=True)
os.makedirs(frna_output_dir, exist_ok=True)

with open(samplesheet_path) as csvfile:
with open(samplesheet_path, encoding="utf-8-sig") as csvfile:
reader = csv.DictReader(csvfile)
headers = reader.fieldnames

Expand Down