Mercurial > repos > p.lucas > get_iupac_percentage
changeset 2:014e2d31e596 draft default tip
Uploaded
author | p.lucas |
---|---|
date | Tue, 11 Jun 2024 10:11:52 +0000 |
parents | 2dc9d2efce29 |
children | |
files | FA_IUPAC_count.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/FA_IUPAC_count.py Tue Jun 11 09:42:49 2024 +0000 +++ b/FA_IUPAC_count.py Tue Jun 11 10:11:52 2024 +0000 @@ -45,7 +45,7 @@ percIUPAC, countIUPAC = count_dna(record.seq, iupac_list) # print(countIUPAC) outputfile.write(record.id+'\t') - outputfile.write(str(percIUPAC)+'\n') + outputfile.write(str(percIUPAC)+'%\n') outputfile.close()