From ebd5fdfaa989f642dd10672e1da40a2dd8064326 Mon Sep 17 00:00:00 2001 From: David Laehnemann Date: Thu, 17 Aug 2023 15:39:44 +0200 Subject: [PATCH] fix fasta header writing after poly-A tail removal --- workflow/scripts/remove_poly_tails.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workflow/scripts/remove_poly_tails.py b/workflow/scripts/remove_poly_tails.py index dce70b26..e10a9c32 100644 --- a/workflow/scripts/remove_poly_tails.py +++ b/workflow/scripts/remove_poly_tails.py @@ -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)