annotate extract_features.py @ 17:de5f42e9a85c draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 69d542836dbce9261906bb0d1e7ef39f9712f4a3
author iuc
date Sun, 15 Dec 2024 09:09:35 +0000
parents 66c8e9d8d1c4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
1 #!/usr/bin/env python
3c5116448979 Uploaded
bgruening
parents:
diff changeset
2
10
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
3 import argparse
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
4 import sys
3c5116448979 Uploaded
bgruening
parents:
diff changeset
5 import textwrap
3c5116448979 Uploaded
bgruening
parents:
diff changeset
6
10
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
7
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
8 def main(args):
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
9 """
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
10 Extract the protein and coding section from an augustus gff, gtf file
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
11 Example file:
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
12 HS04636 AUGUSTUS stop_codon 6901 6903 . + 0 Parent=g1.t1
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
13 HS04636 AUGUSTUS transcription_end_site 8857 8857 . + . Parent=g1.t1
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
14 # protein sequence = [MLARALLLCAVLALSHTANPCCSHPCQNRGVCMSVGFDQYKCDCTRTGFYGENCSTPEFLTRIKLFLKPTPNTVHYIL
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
15 # THFKGFWNVVNNIPFLRNAIMSYVLTSRSHLIDSPPTYNADYGYKSWEAFSNLSYYTRALPPVPDDCPTPLGVKGKKQLPDSNEIVEKLLLRRKFIPD
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
16 # PQGSNMMFAFFAQHFTHQFFKTDHKRGPAFTNGLGHGVDLNHIYGETLARQRKLRLFKDGKMKYQIIDGEMYPPTVKDTQAEMIYPPQVPEHLRFAVG
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
17 # QEVFGLVPGLMMYATIWLREHNRVCDVLKQEHPEWGDEQLFQTSRLILIGETIKIVIEDYVQHLSGYHFKLKFDPELLFNKQFQYQNRIAAEFNTLYH
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
18 # WHPLLPDTFQIHDQKYNYQQFIYNNSILLEHGITQFVESFTRQIAGRVAGGRNVPPAVQKVSQASIDQSRQMKYQSFNEYRKRFMLKPYESFEELTGE
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
19 # KEMSAELEALYGDIDAVELYPALLVEKPRPDAIFGETMVEVGAPFSLKGLMGNVICSPAYWKPSTFGGEVGFQIINTASIQSLICNNVKGCPFTSFSV
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
20 # PDPELIKTVTINASSSRSGLDDINPTVLLKERSTEL]
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
21 # end gene g1
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
22 ###
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
23 #
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
24 # ----- prediction on sequence number 2 (length = 2344, name = HS08198) -----
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
25 #
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
26 # Predicted genes for sequence number 2 on both strands
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
27 # start gene g2
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
28 HS08198 AUGUSTUS gene 86 2344 1 + . ID=g2
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
29 HS08198 AUGUSTUS transcript 86 2344 . + . ID=g2.t1;Parent=g2
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
30 HS08198 AUGUSTUS transcription_start_site 86 86 . + . Parent=g2.t1
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
31 HS08198 AUGUSTUS exon 86 582 . + . Parent=g2.t1
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
32 HS08198 AUGUSTUS start_codon 445 447 . + 0 Parent=g2.t1
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
33 """
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
34 protein_seq = ""
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
35 coding_seq = ""
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
36 if args.protein:
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
37 po = open(args.protein, "w+")
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
38 if args.codingseq:
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
39 co = open(args.codingseq, "w+")
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
40
3c5116448979 Uploaded
bgruening
parents:
diff changeset
41 for line in sys.stdin:
3c5116448979 Uploaded
bgruening
parents:
diff changeset
42 # protein- and coding-sequence are stored as comments
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
43 if line.startswith("#"):
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
44 line = line[2:].strip()
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
45 if line.startswith("start gene"):
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
46 gene_name = line[11:].strip()
3c5116448979 Uploaded
bgruening
parents:
diff changeset
47
10
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
48 if protein_seq:
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
49 if line.endswith("]"):
10
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
50 protein_seq += line[:-1]
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
51 po.write(
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
52 ">%s\n%s\n"
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
53 % (gene_name, "\n".join(textwrap.wrap(protein_seq, 80)))
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
54 )
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
55 protein_seq = ""
10
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
56 else:
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
57 protein_seq += line
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
58
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
59 if coding_seq:
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
60 if line.endswith("]"):
10
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
61 coding_seq += line[:-1]
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
62 co.write(
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
63 ">%s\n%s\n"
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
64 % (gene_name, "\n".join(textwrap.wrap(coding_seq, 80)))
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
65 )
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
66 coding_seq = ""
10
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
67 else:
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
68 coding_seq += line
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
69
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
70 if args.protein and line.startswith("protein sequence = ["):
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
71 if line.endswith("]"):
5
bcfe8e0731f8 Uploaded
bgruening
parents: 3
diff changeset
72 protein_seq = line[20:-1]
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
73 po.write(
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
74 ">%s\n%s\n"
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
75 % (gene_name, "\n".join(textwrap.wrap(protein_seq, 80)))
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
76 )
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
77 protein_seq = ""
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
78 else:
3c5116448979 Uploaded
bgruening
parents:
diff changeset
79 line = line[20:]
3c5116448979 Uploaded
bgruening
parents:
diff changeset
80 protein_seq = line
3c5116448979 Uploaded
bgruening
parents:
diff changeset
81
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
82 if args.codingseq and line.startswith("coding sequence = ["):
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
83 if line.endswith("]"):
5
bcfe8e0731f8 Uploaded
bgruening
parents: 3
diff changeset
84 coding_seq = line[19:-1]
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
85 co.write(
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
86 ">%s\n%s\n"
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
87 % (gene_name, "\n".join(textwrap.wrap(coding_seq, 80)))
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
88 )
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
89 coding_seq = ""
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
90 else:
3
702d9e042295 Uploaded
bgruening
parents: 1
diff changeset
91 line = line[19:]
702d9e042295 Uploaded
bgruening
parents: 1
diff changeset
92 coding_seq = line
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
93
3c5116448979 Uploaded
bgruening
parents:
diff changeset
94 if args.codingseq:
3c5116448979 Uploaded
bgruening
parents:
diff changeset
95 co.close()
3c5116448979 Uploaded
bgruening
parents:
diff changeset
96 if args.protein:
3c5116448979 Uploaded
bgruening
parents:
diff changeset
97 po.close()
3c5116448979 Uploaded
bgruening
parents:
diff changeset
98
10
cb47e789ccaa planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 4a8f640dec78899be470ddd1c436fc0d158c80f3
bgruening
parents: 5
diff changeset
99
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
100 if __name__ == "__main__":
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
101 parser = argparse.ArgumentParser()
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
102 parser.add_argument("-p", "--protein", help="Path to the protein file.")
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
103 parser.add_argument("-c", "--codingseq", help="Path to the coding file.")
1
3c5116448979 Uploaded
bgruening
parents:
diff changeset
104
3c5116448979 Uploaded
bgruening
parents:
diff changeset
105 args = parser.parse_args()
13
66c8e9d8d1c4 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents: 10
diff changeset
106 main(args)