Skip to content

Commit 77ff8da

Browse files
committed
add _masked suffix to fasta record
1 parent b63c2a7 commit 77ff8da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

workflow/scripts/mask_genome_amplicons.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def create_fasta(header, sequence):
140140
Create a FASTA record (includes header and sequence)
141141
"""
142142
fasta_record = list()
143-
fasta_record.append(''.join(['>', header]))
143+
fasta_record.append(''.join(['>', header + "_masked"]))
144144
fasta_record = fasta_record + tw.wrap(str(sequence), width=60)
145145
return fasta_record
146146

0 commit comments

Comments
 (0)