From 8d42d49c485270d8c055575da2e2ab6b8166ee8a Mon Sep 17 00:00:00 2001 From: ElinorSterner <86856150+ElinorSterner@users.noreply.github.com> Date: Wed, 5 Apr 2023 15:53:14 -0400 Subject: [PATCH] Update assess_transcriptomes.py --- Utilities/For_Assemblies/assess_transcriptomes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/For_Assemblies/assess_transcriptomes.py b/Utilities/For_Assemblies/assess_transcriptomes.py index d3f12ae..f1ca031 100644 --- a/Utilities/For_Assemblies/assess_transcriptomes.py +++ b/Utilities/For_Assemblies/assess_transcriptomes.py @@ -23,7 +23,7 @@ from Bio import SeqIO def script_help(): - print('\nThis script grabs and plots GC, length and coverage of transcriptomes. \n\nInput:\ntxt file of tab separated LKH number, ten digit code and taxon info (taxonomy, lifestage, etc).\nAND\nfolder of the folders output by spades named with LKH number \n(LKH999 or WTALKH999)\nOR\ndirectory of renamed assemblies in this format: ten_digit_code_assembledTranscripts.fasta\n\nOutput is multiple R plots, faceted by taxon and a csv file of data. \n\nIt plots GC by length, and distributions of coverage, length and GC.\n\n To run: \n\n\tpython assess_transcriptomes.py \n\nOptional parameters:\n\n-r or --renamed if your assemblies are already renamed to this format: ten_digit_code_assembledTranscript.fasta\n\n-h or --help for this message\n\n') + print('\nThis script grabs and plots GC, length and coverage of transcriptomes. \n\nInput:\ntxt file of tab separated LKH number, ten digit code and taxon info (taxonomy, lifestage, etc).\nAND\nfolder of the folders output by spades named with LKH number \n(LKH999 or WTALKH999)\nOR\ndirectory of renamed assemblies in this format: ten_digit_code_assembledTranscripts.fasta\n\nOutput is multiple R plots, faceted by taxon and a csv file of data. \n\nIt plots GC by length, and distributions of coverage, length and GC.\n\n To run: \n\n\tpython assess_transcriptomes.py \n\n-r or --renamed if your assemblies are already renamed to this format: ten_digit_code_assembledTranscript.fasta/nand this command if they are not yet named: --raw \n\n-h or --help for this message\n\n') def get_args(): #this parses user arguments. Checks if the files are renamed already or not (--renamed or --raw), and gets the directory of those files.