forked from EisenRa/holoflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
genomics.py
214 lines (166 loc) · 7.4 KB
/
genomics.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
import argparse
import subprocess
import os
import sys
import time
###########################
#Argument parsing
###########################
# Gather input files and variables from command line
parser = argparse.ArgumentParser(description='Runs holoflow pipeline.')
parser.add_argument('-f', help="input.txt file", dest="input_txt", required=True)
parser.add_argument('-d', help="temp files directory path", dest="work_dir", required=True)
parser.add_argument('-g', help="reference genome path", dest="ref", required=True)
parser.add_argument('-Q', help="Data quality: LD/HD", dest="Q", required=True)
parser.add_argument('-r', help="reference panel for LD data", dest="ref_panel")
parser.add_argument('-vc', help="variant caller: 1 {bcftools/samtools}, 2 {GATK}, 3 {ANGSD}", dest="var_c", required=True)
parser.add_argument('-c', help="config file", dest="config_file", required=False)
parser.add_argument('-k', help="keep tmp directories", dest="keep", action='store_true')
parser.add_argument('-W', help="rewrite everything", dest="REWRITE", action='store_true')
parser.add_argument('-l', help="pipeline log file", dest="log", required=False)
parser.add_argument('-t', help="threads", dest="threads", required=True)
args = parser.parse_args()
in_f=args.input_txt
path=args.work_dir
ref=args.ref
Q=args.Q
var_c=args.var_c
cores=args.threads
# retrieve current directory
file = os.path.dirname(sys.argv[0])
curr_dir = os.path.abspath(file)
# If the user does not specify a config file, provide default file in GitHub
current_time = time.strftime("%m.%d.%y_%H:%M", time.localtime())
if not (args.config_file):
cpconfigCmd= 'cp '+curr_dir+'/workflows/genomics/config.yaml '+path+'/'+current_time+'_config.yaml'
subprocess.Popen(cpconfigCmd,shell=True).wait()
config = path+'/'+current_time+'_config.yaml'
else:
config=args.config_file
# If the user does not specify a log file, provide default path
if not (args.log):
log = os.path.join(path,"Holoflow_genomics.log")
else:
log=args.log
# Load dependencies
loaddepCmd='module unload gcc && module load tools anaconda3/4.4.0'
subprocess.Popen(loaddepCmd,shell=True).wait()
# Define variant caller
if var_c == str(1):
var_c = 'bcftools'
elif var_c == str(2):
var_c = 'gatk'
elif var_c == str(3):
var_c = 'angsd'
#Append current directory to .yaml config for standalone calling
# see preprocessing.py for verbose description
import ruamel.yaml
yaml = ruamel.yaml.YAML()
yaml.explicit_start = True
with open(str(config), 'r') as config_file:
data = yaml.load(config_file)
if data == None:
data = {}
with open(str(config), 'w') as config_file:
data['data_quality'] = str(Q)
data['var_caller'] = str(var_c)
data['reference_genome'] = str(ref)
data['holopath'] = str(curr_dir)
data['logpath'] = str(log)
if args.ref_panel:
data['ref_panel_HD'] = str(args.ref_panel)
dump = yaml.dump(data, config_file)
###########################
## Functions
###########################
###########################
###### genomics FUNCTIONS
def in_out_genomics(path,in_f):
"""Generate output names files from input.txt. Rename and move
input files where snakemake expects to find them if necessary."""
# Define input directory and create it if not exists "00-InputData"
in_dir = os.path.join(path,"GNM_00-InputBams")
# read input file
with open(in_f,'r') as in_file:
all_lines = in_file.readlines() # Read input.txt lines
# remove empty lines
all_lines = map(lambda s: s.strip(), all_lines)
lines = list(filter(None, list(all_lines)))
# Define variables
output_files=''
if not os.path.exists(in_dir): # IF IT DOES NOT EXIST, start from 0 - never run before
os.makedirs(in_dir) # create general input directory
if os.path.exists(in_dir):
# define output dir - for snakemake (needs output files ID)
if Q == "HD":
final_temp_dir = "GNM_03-Phasing"
if Q == "LD":
final_temp_dir = "GNM_03-Imputation"
# generate input-otupts
for line in lines:
### Skip line if starts with # (comment line)
if not (line.startswith('#')):
line = line.strip('\n').split(' ') # Create a list of each line
group=line[0]
in_bam_path=line[1]
chromosome_list = line[2]
# Define output files based on input.txt
output_files+=path+'/'+final_temp_dir+'/'+group+' '
# Define input dir
in1=in_dir+'/'+group+''
# Check if input files already in desired dir
if os.path.exists(in1):
if args.REWRITE: # If user wants to remove previous runs' data and run from scratch
rmCmd='rm -rf '+in1+''
subprocess.Popen(rmCmd,shell=True).wait()
else:
pass
if not os.path.exists(in1) or args.REWRITE: # if job input directory does not exist
os.makedirs(in1)
linkbamsCmd = 'ln -s '+in_bam_path+'/*.bam '+in1+'' # Create soft link for files to be linked to new dir
subprocess.Popen(linkbamsCmd, shell=True).wait()
# Append chromosome list path to config
yaml = ruamel.yaml.YAML()
yaml.explicit_start = True
with open(str(config), 'r') as config_file:
data = yaml.load(config_file)
with open(str(config), 'w') as config_file:
data['chr_list'] = str(chromosome_list)
dump = yaml.dump(data, config_file)
return output_files
def run_genomics(in_f, path, config, cores):
"""Run snakemake on shell, wait for it to finish.
Given flag, decide whether keep only last directory."""
# Define output names
out_files = in_out_genomics(path,in_f)
curr_dir = os.path.dirname(sys.argv[0])
holopath = os.path.abspath(curr_dir)
path_snkf = os.path.join(holopath,'workflows/genomics/Snakefile')
# Run snakemake
log_file = open(str(log),'w+')
log_file.write("Have a nice run!\n\t\tHOLOFOW Genomics starting")
log_file.close()
genomics_snk_Cmd = 'module load tools anaconda3/4.4.0 && snakemake -s '+path_snkf+' -k '+out_files+' --configfile '+config+' --cores '+cores+''
subprocess.Popen(genomics_snk_Cmd, shell=True).wait()
log_file = open(str(log),'a+')
log_file.write("\n\t\tHOLOFOW Genomics has finished :)")
log_file.close()
# Keep temp dirs / remove all
if args.keep: # If -k, True: keep
pass
else: # If not -k, keep only last dir
exist=list()
for file in out_files.split(" "):
exist.append(os.path.isfile(file))
if all(exist): # all output files exist
rmCmd='cd '+path+' | grep -v '+final_temp_dir+' | xargs rm -rf && mv '+final_temp_dir+' GNM_Holoflow'
subprocess.Popen(rmCmd,shell=True).wait()
else: # all expected output files don't exist: keep tmp dirs
log_file = open(str(log),'a+')
log_file.write("Looks like something went wrong...\n\t\t The temporal directories have been kept, you should have a look...")
log_file.close()
###########################
#### Workflows running
###########################
# 1 # Final Stats workflow
run_genomics(in_f, path, config, cores)