Skip to content

Commit

Permalink
strip out the mount part of windows filepaths #2
Browse files Browse the repository at this point in the history
  • Loading branch information
rmcolq committed Sep 26, 2023
1 parent b209bb3 commit cf0b363
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/assembly_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ def get_input_info(csv_file):
barcode, reads, kraken_report = line.strip().split(',')
if barcode == "example":
continue
reads = reads.replace("/mnt/c","")
kraken_report = kraken_report.replace("/mnt/c","")
summary_info[barcode] = {
"barcode":barcode,
"reads": reads,
Expand Down

0 comments on commit cf0b363

Please sign in to comment.