annotate vcfPytools.py @ 0:3eca7b2537aa draft default tip

Imported from capsule None
author devteam
date Thu, 23 Jan 2014 12:31:47 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
1 #!/usr/bin/python
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
2
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
3 import os.path
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
4 import sys
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
5
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
6 __author__ = "alistair ward"
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
7 __version__ = "version 0.26"
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
8 __date__ = "february 2011"
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
9
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
10 def main():
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
11 usage = "Usage: vcfPytools.py [tool] [options]\n\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
12 "Available tools:\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
13 " annotate:\n\tAnnotate the vcf file with membership in other vcf files.\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
14 " extract:\n\tExtract vcf records from a region.\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
15 " filter:\n\tFilter the vcf file.\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
16 " intersect:\n\tGenerate the intersection of two vcf files.\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
17 " merge:\n\tMerge a list of vcf files.\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
18 " multi:\n\tFind the intersections and unique fractions of multiple vcf files.\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
19 " sort:\n\tSort a vcf file.\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
20 " stats:\n\tGenerate statistics from a vcf file.\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
21 " union:\n\tGenerate the union of two vcf files.\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
22 " unique:\n\tGenerate the unique fraction from two vcf files.\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
23 " validate:\n\tValidate the input vcf file.\n\n" + \
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
24 "vcfPytools.py [tool] --help for information on a specific tool."
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
25
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
26 # Determine the requested tool.
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
27
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
28 if len(sys.argv) > 1:
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
29 tool = sys.argv[1]
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
30 else:
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
31 print >> sys.stderr, usage
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
32 exit(1)
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
33
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
34 if tool == "annotate":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
35 import annotate
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
36 success = annotate.main()
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
37 elif tool == "extract":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
38 import extract
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
39 success = extract.main()
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
40 elif tool == "filter":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
41 import filter
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
42 success = filter.main()
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
43 elif tool == "intersect":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
44 import intersect
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
45 success = intersect.main()
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
46 elif tool == "multi":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
47 import multi
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
48 success = multi.main()
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
49 elif tool == "merge":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
50 import merge
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
51 success = merge.main()
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
52 elif tool == "sort":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
53 import sort
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
54 success = sort.main()
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
55 elif tool == "stats":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
56 import stats
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
57 success = stats.main()
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
58 elif tool == "union":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
59 import union
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
60 success = union.main()
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
61 elif tool == "unique":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
62 import unique
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
63 success = unique.main()
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
64 elif tool == "test":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
65 import test
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
66 success = test.main()
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
67 elif tool == "validate":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
68 import validate
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
69 success = validate.main()
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
70 elif tool == "--help" or tool == "-h" or tool == "?":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
71 print >> sys.stderr, usage
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
72 else:
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
73 print >> sys.stderr, "Unknown tool: ",tool
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
74 print >> sys.stderr, "\n", usage
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
75 exit(1)
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
76
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
77 # If program completed properly, terminate.
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
78
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
79 if success == 0: exit(0)
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
80
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
81 if __name__ == "__main__":
3eca7b2537aa Imported from capsule None
devteam
parents:
diff changeset
82 main()