-
Notifications
You must be signed in to change notification settings - Fork 11
/
gtf2utrs.py
executable file
·30 lines (24 loc) · 966 Bytes
/
gtf2utrs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
from optparse import OptionParser
################################################################################
# gtf2utrs.py
#
# Take a gtf file with exons and CDS annotated and return a gtf of the UTRs.
################################################################################
################################################################################
# main
################################################################################
def main():
usage = 'usage: %prog [options] <gtf file>'
parser = OptionParser(usage)
#parser.add_option()
(options,args) = parser.parse_args()
if len(args) != 1:
parser.error('Must provide gtf file')
else:
gtf_file = args[0]
################################################################################
# __main__
################################################################################
if __name__ == '__main__':
main()