Skip to content

Commit

Permalink
fix fasta header writing after poly-A tail removal
Browse files Browse the repository at this point in the history
  • Loading branch information
dlaehnemann committed Aug 17, 2023
1 parent 3814915 commit ebd5fdf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion workflow/scripts/remove_poly_tails.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
print(
">",
seq_record.id,
" ",
seq_record.description,
sep=" ",
sep="",
file=transcript_clean_cdna_fasta,
)
print(polyrem_seq, file=transcript_clean_cdna_fasta)

0 comments on commit ebd5fdf

Please sign in to comment.