Skip to content

Commit

Permalink
escape the bam string
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi18av committed Jun 23, 2024
1 parent 7b989e9 commit d399c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/samplesheet_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
reader = csv.DictReader(infile)

writer = csv.DictWriter(outfile,
fieldnames=standard_magma_fields + ['magma_sample_name', 'magma_bam_rg_string'])
fieldnames=standard_magma_fields + ['magma_sample_name', 'magma_bam_rg_string'], escapechar='\\')
writer.writeheader()

fail = False
Expand Down

0 comments on commit d399c71

Please sign in to comment.