forked from Xinglab/rmats-turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rmats.py
595 lines (486 loc) · 25.6 KB
/
rmats.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
#!/usr/bin/env python
# -*- coding: utf-8 -*-
##
# @file lite2.py
# @brief
# @author Zhijie Xie
# @date 2015-11-27
from __future__ import print_function
import sys
import os
import os.path
import argparse
import subprocess
import shutil
import time
from datetime import datetime
from rmatspipeline import run_pipe
VERSION = 'v4.1.2'
USAGE = '''%(prog)s [options]'''
pipe_tasks = set(['prep', 'post', 'both',])
def getstatusoutput(cmd):
""" behave like commands.getstatusoutput which moved to
subprocess.getstatusoutput in Python 3.
Implmented with subprocess.check_output which is available
in both Python 2 and 3.
"""
status = 0
try:
output = subprocess.check_output(cmd, shell=True, stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
status = e.returncode
output = e.output
output = output.decode()
if output[-1] == '\n':
output = output[:-1]
return (status, output)
def doSTARMapping(args): ## do STAR mapping
fastqs = [args.s1, args.s2,]
bams = [[], [],]
for i in range(len(fastqs)):
if fastqs[i] != '':
sample = [pair.split(':') for pair in fastqs[i].split(',')]
print("mapping the first sample")
for rr, pair in enumerate(sample):
map_folder = os.path.join(
args.tmp, '{}_bam{}_{}'.format(args.prep_prefix, i+1, rr+1))
if os.path.exists(map_folder):
if os.path.isdir(map_folder):
os.rmdir(map_folder)
else:
os.unlink(map_folder)
os.makedirs(map_folder)
cmd = 'STAR --chimSegmentMin 2 --outFilterMismatchNmax 3'
if not args.allow_clipping:
cmd += ' --alignEndsType EndToEnd'
cmd += ' --runThreadN ' + str(max([4, args.nthread])) + ' --outSAMstrandField intronMotif --outSAMtype BAM SortedByCoordinate '
cmd += '--alignSJDBoverhangMin ' + str(args.tophatAnchor) + ' --alignIntronMax 299999 --genomeDir ' + args.bIndex + ' --sjdbGTFfile ' + args.gtf
cmd += ' --outFileNamePrefix ' + map_folder + '/ --readFilesIn '
cmd += ' '.join(pair)
if pair[0].endswith('.gz'):
cmd += ' --readFilesCommand zcat'
status,output = getstatusoutput(cmd)
print("mapping sample_%d, %s is done with status %s" % (i, ' '.join(pair), status))
if (int(status)!=0): ## it did not go well
print("error in mapping sample_%d, %s: %s" % (i, ' '.join(pair),status))
print("error detail: %s" % output)
raise Exception()
print(output)
bams[i].append(os.path.join(map_folder, 'Aligned.sortedByCoord.out.bam'))
return ','.join(bams[0]), ','.join(bams[1])
##### end of doSTARMapping ####
def get_args():
"""Supplies all the neccessary arguments to the argparse package, along with appropriate help, defaults, destinations, and choices.
The function itself takes no arguments.
Unless rMATS is called in stat mode, exits with appropriate errors if any of: sequence files, gtf, or readlength arguments are missing.
If an output directory and/or a temporary directory aren't supplied, exits with appropriate errors.
Creates output directory. Cleans user supplied bam or fastq filenames to remove trailing newlines, spaces, and commas.
If FASTQs are supplied but not BAMs, aligns FASTQs using STAR and sets the resultant BAM file locations as BAM file arguments.
If tstat is not supplied, sets the tstat argument equal to the nthread argument or the nthread default, if nthread is also not supplied..
Returns an arg object.
"""
parser = argparse.ArgumentParser(usage=USAGE)
group1 = parser.add_mutually_exclusive_group()
group2 = parser.add_mutually_exclusive_group()
parser.add_argument('--version', action='version', version=VERSION)
parser.add_argument('--gtf', action='store',
help='An annotation of genes and transcripts in GTF format', dest='gtf')
group1.add_argument('--b1', action='store', default='',
help='A text file containing a comma separated list of the BAM files for sample_1. (Only if using BAM)', dest='b1')
group2.add_argument('--b2', action='store', default='',
help='A text file containing a comma separated list of the BAM files for sample_2. (Only if using BAM)', dest='b2')
group1.add_argument('--s1', action='store', default='',
help='A text file containing a comma separated list of the FASTQ files for sample_1. If using paired reads the format is ":" to separate pairs and "," to separate replicates. (Only if using fastq)', dest='s1')
group2.add_argument('--s2', action='store', default='',
help='A text file containing a comma separated list of the FASTQ files for sample_2. If using paired reads the format is ":" to separate pairs and "," to separate replicates. (Only if using fastq)', dest='s2')
parser.add_argument('--od', action='store',
help='The directory for final output from the post step', dest='od')
parser.add_argument('--tmp', action='store',
help='The directory for intermediate output such as ".rmats" files from the prep step', dest='tmp')
parser.add_argument('-t', action='store', default='paired',
choices=['paired', 'single'],
help='Type of read used in the analysis: either "paired" for paired-end data or "single" for single-end data. Default: %(default)s', dest='readtype')
parser.add_argument('--libType', action='store', default='fr-unstranded',
choices=['fr-unstranded', 'fr-firststrand',
'fr-secondstrand',],
help='Library type. Use fr-firststrand or fr-secondstrand for strand-specific data. Default: %(default)s', dest='dt')
parser.add_argument('--readLength', action='store', type=int,
help='The length of each read', dest='readLength')
parser.add_argument('--variable-read-length', action='store_true',
help='Allow reads with lengths that differ from --readLength to be processed. --readLength will still be used to determine IncFormLen and SkipFormLen',
dest='variable_read_length')
parser.add_argument('--anchorLength', action='store', type=int, default=1,
help='The anchor length. Default is %(default)s', dest='anchorLength')
parser.add_argument('--tophatAnchor', action='store', type=int, default=6,
help='The "anchor length" or "overhang length" used in the aligner. At least "anchor length" NT must be mapped to each end of a given junction. The default is %(default)s. (Only if using fastq)', dest='tophatAnchor')
parser.add_argument('--bi', action='store', default='',
help='The directory name of the STAR binary indices (name of the directory that contains the SA file). (Only if using fastq)', dest='bIndex')
parser.add_argument('--nthread', action='store', type=int, default=1,
help='The number of threads. The optimal number of threads should be equal to the number of CPU cores. Default: %(default)s', dest='nthread')
parser.add_argument('--tstat', action='store', type=int,
help='The number of threads for the statistical model. If not set then the value of --nthread is used', dest='tstat')
parser.add_argument('--cstat', action='store', type=float, default=0.0001,
help='The cutoff splicing difference. The cutoff used in the null hypothesis test for differential splicing. The default is 0.0001 for 0.01%% difference. Valid: 0 <= cutoff < 1. Does not apply to the paired stats model', dest='cstat')
parser.add_argument('--task', action='store', default='both',
choices=['prep', 'post', 'both', 'inte', 'stat'],
help='Specify which step(s) of rMATS to run. Default: %(default)s. prep: preprocess BAMs and generate a .rmats file. post: load .rmats file(s) into memory, detect and count alternative splicing events, and calculate P value (if not --statoff). both: prep + post. inte (integrity): check that the BAM filenames recorded by the prep task(s) match the BAM filenames for the current command line. stat: run statistical test on existing output files', dest='task')
parser.add_argument('--statoff', action='store_false',
help='Skip the statistical analysis', dest='stat')
parser.add_argument('--paired-stats', action='store_true',
help='Use the paired stats model', dest='paired_stats')
parser.add_argument('--novelSS', action='store_true',
help='Enable detection of novel splice sites (unannotated splice sites). Default is no detection of novel splice sites', dest='novelSS')
parser.add_argument('--mil', action='store', type=int, default=50,
help='Minimum Intron Length. Only impacts --novelSS behavior. Default: %(default)s', dest='mil')
parser.add_argument('--mel', action='store', type=int, default=500,
help='Maximum Exon Length. Only impacts --novelSS behavior. Default: %(default)s', dest='mel')
parser.add_argument('--allow-clipping', action='store_true',
help='Allow alignments with soft or hard clipping to be used',
dest='allow_clipping')
parser.add_argument('--fixed-event-set', action='store', help='A directory containing fromGTF.[AS].txt files to be used instead of detecting a new set of events')
args = parser.parse_args()
if args.task != 'stat':
if args.b1 == '' and args.b2 == '' and args.s1 == '' and args.s2 == '':
sys.exit('ERROR: BAM/FASTQ required. Please check b1, b2, s1 and s2.')
if args.gtf == None:
sys.exit('ERROR: GTF file required. Please check --gtf.')
if args.readLength is None:
sys.exit('ERROR: --readLength is required. An average or median'
' --readLength can be used in combination with'
' --variable-read-length when the reads do not have the'
' same length.')
args.junctionLength = 2 * (args.readLength - args.anchorLength)
if args.od == None or args.tmp == None:
sys.exit('ERROR: output folder and temporary folder required. Please check --od and --tmp.')
if (args.s1 != '' or args.s2 != '') and args.bIndex == '':
sys.exit('ERROR: STAR binary indexes required. Please check --bi.')
if len(args.b1) > 0:
with open(args.b1, 'r') as fp:
args.b1 = fp.read().strip().strip(',')
if len(args.b2) > 0:
with open(args.b2, 'r') as fp:
args.b2 = fp.read().strip().strip(',')
if len(args.s1) > 0:
with open(args.s1, 'r') as fp:
args.s1 = fp.read().strip().strip(',')
if len(args.s2) > 0:
with open(args.s2, 'r') as fp:
args.s2 = fp.read().strip().strip(',')
create_output_dirs(args)
args.prep_prefix = claim_prep_prefix(args.task, args.tmp)
if args.b1 == '' and args.b2 == '' and (args.s1 != '' or args.s2 != ''):
args.b1, args.b2 = doSTARMapping(args)
args.bams = ','.join([args.b1, args.b2]).strip(',')
dt_map = {'fr-unstranded':0, 'fr-firststrand':1, 'fr-secondstrand':2}
args.dt = dt_map[args.dt]
if args.tstat is None:
args.tstat = args.nthread
return args
def check_integrity(input_bams_string, tmp_dir):
"""
Purpose: Iterates over the supplied string of bam filenames and checks every file in tmp_dir
to ensure every bam filename has exactly one prep file. Exits with appropriate errors if
there are one or more of the following: duplicate bam files, bam files with no prep,
bam files with multiple preps, or prep files with no corresponding bam. Otherwise, prints 'Ok.'
Positional arguments:
First: input_bams_string - A comma-delimited string of all the input bam filenames.
Second: tmp_dir - The location of the current rMATS instance's temporary directory, ostensibly containing the prep files for the input bams.
"""
input_bams = input_bams_string.split(',')
duplicate_input_bams = list()
prep_count_by_bam = dict()
for input_bam in input_bams:
if input_bam in prep_count_by_bam:
duplicate_input_bams.append(input_bam)
else:
prep_count_by_bam[input_bam] = 0
all_files = [os.path.join(root, name)
for root, dirs, files in os.walk(tmp_dir)
for name in files if name.endswith('.rmats')]
bams_only_in_prep = list()
for name in all_files:
with open(name, 'r') as fp:
prep_bams = fp.readline().strip().split(',')
for prep_bam in prep_bams:
if prep_bam not in prep_count_by_bam:
bams_only_in_prep.append(prep_bam)
prep_count_by_bam[prep_bam] = 1
else:
prep_count_by_bam[prep_bam] += 1
missing_preps = list()
duplicate_preps = list()
for bam, prep_count in prep_count_by_bam.items():
if prep_count == 0:
missing_preps.append(bam)
elif prep_count > 1:
duplicate_preps.append(bam)
def update_errors(errors, description, values):
if not values:
return
errors.append('{}:\n\t{}'.format(description, '\n\t'.join(values)))
errors = list()
update_errors(errors, 'duplicate input bam files', duplicate_input_bams)
update_errors(errors,
'bam files with multiple associations with prep output',
duplicate_preps)
update_errors(errors,
'input bam files with no associated prep output',
missing_preps)
update_errors(errors,
'bam files not in input but associated with prep output',
bams_only_in_prep)
if errors:
sys.exit('\n'.join(errors))
print('Ok.')
def check_if_has_counts(counts_file_path):
has_sample_1_counts = False
has_sample_2_counts = False
with open(counts_file_path, 'rt') as f_handle:
for i, line in enumerate(f_handle):
if i == 0:
continue # skip header line
values = line.strip().split('\t')
inc_sample_1_vs = values[1]
inc_sample_2_vs = values[3]
has_sample_1_counts = inc_sample_1_vs != ''
has_sample_2_counts = inc_sample_2_vs != ''
break # only check the first row
return has_sample_1_counts, has_sample_2_counts
def filter_countfile(fn):
"""TODO: Docstring for filter_countfile.
:returns: TODO
"""
with open(fn, 'r+') as fp:
data = fp.readlines()
header = data[0]
rest = [header,]
for line in data[1:]:
eles = line.split('\t')
if len(eles) != 7:
sys.exit('ERROR: corrupted read count file: %s' % (fn))
sum_ic_1 = 0
sum_sc_1 = 0
sum_ic_2 = 0
sum_sc_2 = 0
incv1 = list(map(int, eles[1].split(',')))
skpv1 = list(map(int, eles[2].split(',')))
incv2 = list(map(int, eles[3].split(',')))
skpv2 = list(map(int, eles[4].split(',')))
inc_len = int(eles[5])
skp_len = int(eles[6])
for i in range(len(incv1)):
sum_ic_1 += incv1[i]
sum_sc_1 += skpv1[i]
for i in range(len(incv2)):
sum_ic_2 += incv2[i]
sum_sc_2 += skpv2[i]
if (sum_ic_1 + sum_sc_1 > 0 and\
sum_ic_2 + sum_sc_2 > 0 and\
(sum_ic_1 != 0 or sum_ic_2 != 0) and\
(sum_sc_1 != 0 or sum_sc_2 != 0) and\
inc_len != 0 and skp_len != 0):
rest.append(line)
fp.seek(0)
fp.writelines(rest)
fp.truncate()
return
def process_counts(istat, tstat, counttype, ase, cstat, od, od_tmp, stat,
paired_stats, python_executable, root_dir):
"""TODO: Docstring for process_counts.
:returns: TODO
"""
from_gtf_path = '%s/fromGTF.%s.txt' % (od, ase)
if not os.path.exists(from_gtf_path):
print('WARNING: Cannot find {}. Unable to produce final output files'
' for {} {}.'.format(from_gtf_path, ase, counttype),
file=sys.stderr)
return
if not os.path.exists(istat):
print('WARNING: Cannot find {}. Unable to produce final output files'
' for {} {}.'.format(istat, ase, counttype),
file=sys.stderr)
return
if stat:
has_sample_1_counts, has_sample_2_counts = check_if_has_counts(istat)
if has_sample_1_counts and has_sample_2_counts:
filter_countfile(istat)
elif has_sample_1_counts or has_sample_2_counts:
print('WARNING: Statistical step is skipped for {} {} because only'
' one group is involved'.format(ase, counttype),
file=sys.stderr)
stat = False
sec_tmp = os.path.join(od_tmp, '%s_%s' % (counttype, ase))
if os.path.exists(sec_tmp):
if os.path.isdir(sec_tmp):
shutil.rmtree(sec_tmp)
else:
os.unlink(sec_tmp)
os.mkdir(sec_tmp)
ostat = os.path.join(sec_tmp, 'rMATS_result_%s.txt' % ('%s'))
FNULL = open(os.devnull, 'w')
resfp = open(ostat % (''), 'w')
finfn = os.path.join(od, '%s.MATS.%s.txt' % (ase, counttype))
ostat_id = ostat % ('ID')
ostat_inp = ostat % ('INP')
ostat_il = ostat % ('I-L')
ostat_pv = ostat % ('P-V')
ostat_fdr = ostat % ('FDR')
ostat_paired = ostat % ('paired')
rmats_c = os.path.join(root_dir, 'rMATS_C/rMATSexe')
paired_model = os.path.join(root_dir, 'rMATS_R/paired_model.R')
pas_out = os.path.join(root_dir, 'rMATS_P/paste.py')
inc_lvl = os.path.join(root_dir, 'rMATS_P/inclusion_level.py')
fdr_cal = os.path.join(root_dir, 'rMATS_P/FDR.py')
join_2f = os.path.join(root_dir, 'rMATS_P/joinFiles.py')
# Calculate inclusion levels
subprocess.call([python_executable, pas_out, '-i', istat, '--o1', ostat_id, '--o2', ostat_inp,], stdout=FNULL)
subprocess.call([python_executable, inc_lvl, ostat_inp, ostat_il,], stdout=FNULL)
# Calculate PValue and FDR
if stat:
if paired_stats:
# PAIRADISE writes a status file to the working directory.
# Use the cwd kwarg of subprocess.call to set which
# directory the status file gets written to.
# This requires passing absolute path names to paired_model.R
abs_istat = os.path.abspath(istat)
abs_ostat_fdr = os.path.abspath(ostat_fdr)
paired_command = ['Rscript', paired_model, abs_istat, str(tstat),
abs_ostat_fdr]
with open(ostat_paired, 'wb') as paired_fp:
paired_model_return_code = subprocess.call(
paired_command, stdout=paired_fp, stderr=subprocess.STDOUT,
cwd=sec_tmp)
if paired_model_return_code != 0:
print('error in paired model', file=sys.stderr)
print_file_to_stderr(ostat_paired)
else:
subprocess.call([rmats_c, '-i', istat, '-t', str(tstat), '-o', ostat_pv, '-c', str(cstat),], stdout=FNULL)
subprocess.call([python_executable, fdr_cal, ostat_pv, ostat_fdr,], stdout=FNULL)
else:
append_columns_with_defaults(istat, ostat_fdr, ['PValue', 'FDR'], ['NA', 'NA'])
# Combine into final output
subprocess.call(['paste', ostat_fdr, ostat_il,], stdout=resfp)
subprocess.call([python_executable, join_2f, from_gtf_path, resfp.name, '0', '0', finfn,], stdout=FNULL)
FNULL.close()
resfp.close()
def print_file_to_stderr(filename):
with open(filename, 'rt') as file_handle:
for line in file_handle:
print(line, file=sys.stderr)
def append_columns_with_defaults(in_file_name, out_file_name, column_names, default_values):
column_names_addition = '\t{}\n'.format('\t'.join(column_names))
default_values_addition = '\t{}\n'.format('\t'.join(default_values))
with open(in_file_name, 'rt') as in_file:
with open(out_file_name, 'wt') as out_file:
for i, raw_line in enumerate(in_file):
line = raw_line.rstrip('\n')
out_file.write(line)
if i == 0:
out_file.write(column_names_addition)
else:
out_file.write(default_values_addition)
def get_python_executable():
# Try to get the absolute path of the executable for the running
# Python interpreter.
python_executable = sys.executable
if not python_executable:
# Fallback
print('Absolute path for current Python interpreter not found.'
' Using "python" without a full path to run scripts',
file=sys.stderr)
python_executable = 'python'
return python_executable
def generate_summary(python_executable, out_dir, root_dir):
summary_script = os.path.join(root_dir, 'rMATS_P', 'summary.py')
summary_out_file_path = os.path.join(out_dir, 'summary.txt')
with open(summary_out_file_path, 'wb') as f_handle:
subprocess.call([python_executable, summary_script, out_dir],
stdout=f_handle)
def claim_prep_prefix(task, tmp_dir):
if task not in ['prep', 'both']:
return None
file_name_template = os.path.join(tmp_dir, '{}_0.rmats')
prep_prefix = None
while True:
prep_prefix = datetime.fromtimestamp(time.time()).strftime(
'%Y-%m-%d-%H_%M_%S_%f')
file_path = file_name_template.format(prep_prefix)
if not os.path.exists(file_path):
with open(file_path, 'wt'):
pass # create the file to claim the timestamp
break
return prep_prefix
def create_output_dirs(args):
args.out_tmp_sub_dir = os.path.join(args.od, 'tmp')
for dir_path in [args.od, args.out_tmp_sub_dir, args.tmp]:
if not os.path.exists(dir_path):
os.makedirs(dir_path) # python2: makedirs() got an unexpected keyword argument 'exist_ok'
def apply_id_mapping(event_type, out_dir):
id_to_orig = dict()
mapping_path = os.path.join(out_dir, 'id_mapping.{}.txt'.format(event_type))
with open(mapping_path, 'rt') as map_f:
for i, line in enumerate(map_f):
values = line.strip().split('\t')
if i == 0:
expected_mapping_headers = ['original_id', 'mapped_id']
if values != expected_mapping_headers:
sys.exit('ERROR: expected headers in {} to be {}'
' but found {}'.format(
mapping_path, expected_mapping_headers, values))
continue
id_to_orig[values[1]] = values[0]
file_templates = ['fromGTF.{}.txt', 'JC.raw.input.{}.txt',
'JCEC.raw.input.{}.txt']
for file_template in file_templates:
file_path = os.path.join(out_dir, file_template.format(event_type))
with open(file_path, 'rt') as in_f:
# using mapping_path as a temporary file which is then removed
with open(mapping_path, 'wt') as out_f:
for i, line in enumerate(in_f):
values = line.strip().split('\t')
if i == 0:
id_i = values.index('ID')
out_f.write(line)
continue
mapped_id = values[id_i]
values[id_i] = id_to_orig[mapped_id]
out_f.write('{}\n'.format('\t'.join(values)))
shutil.move(mapping_path, file_path)
def main():
"""Takes no arguments.
Processes arguments supplied when rmats.py was called using get_args().
If task argument is 'inte', checks BAM and prep file integrity.
If task argument is 'prep', 'post', or 'both', runs pipeline using seperate module in rmatspipeline.
If task argument is not valid, returns nothing.
For each splicing event type, processes counts and outputs files.
Generates output summary.
Prints 'Done processing count files.' and returns nothing.
"""
args = get_args()
if args.task == 'inte':
check_integrity(args.bams, args.tmp)
if args.task in pipe_tasks:
run_pipe(args)
if args.task not in ['post', 'both', 'stat']:
return
jc_it = os.path.join(args.od, 'JC.raw.input.%s.txt')
jcec_it = os.path.join(args.od, 'JCEC.raw.input.%s.txt')
python_executable = get_python_executable()
# realpath is used here to support the conda install which creates a
# symlink for rmats.py
root_dir = os.path.abspath(os.path.dirname(os.path.realpath(__file__)))
print('Processing count files.')
for event_type in ['SE', 'MXE', 'A3SS', 'A5SS', 'RI']:
if args.fixed_event_set:
apply_id_mapping(event_type, args.od)
process_counts(jc_it % (event_type), args.tstat, 'JC', event_type,
args.cstat, args.od, args.out_tmp_sub_dir, args.stat,
args.paired_stats, python_executable, root_dir)
process_counts(jcec_it % (event_type), args.tstat, 'JCEC', event_type,
args.cstat, args.od, args.out_tmp_sub_dir, args.stat,
args.paired_stats, python_executable, root_dir)
generate_summary(python_executable, args.od, root_dir)
print('Done processing count files.')
return
if __name__ == "__main__":
main()