-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrun_ploidy.py
executable file
·142 lines (128 loc) · 4.88 KB
/
run_ploidy.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/usr/bin/env python3
from os.path import basename, splitext, join
import sys
import argparse
from funpipe.utils import *
from funpipe.bam import bam_depth, depth_per_window, sort_bam, clean_bam
def run_ploidy(out_dir, bam, faidx, bam_sorted, clean_up, RAM):
""" run ploidy analysis
:param out_dir: output directory.
:param bam: input BAM path.
:param faidx: index of reference genome fasta.
:param bam_sorted: whether the input BAM is sorted.
:param chean_up: whether cleanup intemediate files.
:param RAM: RAM usage for sorting step
:return 1: workflow run successfully.
"""
with cd(out_dir):
base_prefix = splitext(basename(bam))[0]
out_prefix = join(out_dir, base_prefix)
bam_to_clean = bam
if not bam_sorted:
sorted_bam = sort_bam(bam, out_dir, RAM=RAM)
bam_to_clean = sorted_bam
cleaned_bam = clean_bam(bam_to_clean, out_prefix)
pileup = bam_depth(cleaned_bam, out_prefix, idx=True)
depth_per_window(pileup, base_prefix, faidx)
if clean_up: # clean up working directory
if not bam_sorted:
rm(sorted_bam)
rm(cleaned_bam)
print(" - Job finished.")
return 1
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description='Calculate genomic ploidy for each bin from a BAM.'
+ 'BAMs are sorted and cleaned by keeping only high quality alignments'
+ '. Pileups were used to calculate dosage. Ploidy were calculated '
+ 'by normalizing average depth/bp against overall depth/bp.')
# required arguments
required = parser.add_argument_group('Required arguments')
required.add_argument(
'-i', '--bam', required=True, help='Input BAM path'
)
required.add_argument(
'--faidx', required=True, help='Fasta index'
)
# optional arguments
parser.add_argument(
'-o', '--out_dir', help="Output file", default='.'
)
parser.add_argument(
'-n', '--bam_sorted', help='Do not sort input bam',
action='store_true', default=False
)
parser.add_argument(
'-c', '--cleanup', help='Cleanup intermediate files, mainly BAMs',
action='store_true', default=False
)
parser.add_argument(
'-m', '--RAM', help='RAM for sorting BAMs'
)
args = parser.parse_args()
run_ploidy(args.out_dir, args.bam, args.faidx, args.bam_sorted,
args.cleanup, args.RAM)
#!/usr/bin/env python3
from os.path import basename, splitext, join
import sys
import argparse
from funpipe.utils import *
from funpipe.bam import bam_depth, depth_per_window, sort_bam, clean_bam
def run_ploidy(out_dir, bam, faidx, bam_sorted, clean_up, RAM):
""" run ploidy analysis
:param out_dir: output directory.
:param bam: input BAM path.
:param faidx: index of reference genome fasta.
:param bam_sorted: whether the input BAM is sorted.
:param chean_up: whether cleanup intemediate files.
:param RAM: RAM usage for sorting step
:return 1: workflow run successfully.
"""
with cd(out_dir):
base_prefix = splitext(basename(bam))[0]
out_prefix = join(out_dir, base_prefix)
bam_to_clean = bam
if not bam_sorted:
sorted_bam = sort_bam(bam, out_dir, RAM=RAM)
bam_to_clean = sorted_bam
cleaned_bam = clean_bam(bam_to_clean, out_prefix)
pileup = bam_depth(cleaned_bam, out_prefix, idx=True)
depth_per_window(pileup, base_prefix, faidx)
if clean_up: # clean up working directory
if not bam_sorted:
rm(sorted_bam)
rm(cleaned_bam)
print(" - Job finished.")
return 1
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description='Calculate genomic ploidy for each bin from a BAM.'
+ 'BAMs are sorted and cleaned by keeping only high quality alignments'
+ '. Pileups were used to calculate dosage. Ploidy were calculated '
+ 'by normalizing average depth/bp against overall depth/bp.')
# required arguments
required = parser.add_argument_group('Required arguments')
required.add_argument(
'-i', '--bam', required=True, help='Input BAM path'
)
required.add_argument(
'--faidx', required=True, help='Fasta index'
)
# optional arguments
parser.add_argument(
'-o', '--out_dir', help="Output file", default='.'
)
parser.add_argument(
'-n', '--bam_sorted', help='Do not sort input bam',
action='store_true', default=False
)
parser.add_argument(
'-c', '--cleanup', help='Cleanup intermediate files, mainly BAMs',
action='store_true', default=False
)
parser.add_argument(
'-m', '--RAM', help='RAM for sorting BAMs'
)
args = parser.parse_args()
run_ploidy(args.out_dir, args.bam, args.faidx, args.bam_sorted,
args.cleanup, args.RAM)