-
Notifications
You must be signed in to change notification settings - Fork 34
/
parse-output.py
executable file
·276 lines (261 loc) · 19.1 KB
/
parse-output.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
#!/usr/bin/env python3
from __future__ import absolute_import, division, unicode_literals
from __future__ import print_function
import sys
import csv
from io import open
csv.field_size_limit(sys.maxsize) # make sure we can write very large csv fields
import os
import argparse
import colored_traceback.always
# if you move this script, you'll need to change this method of getting the imports
partis_dir = os.path.dirname(os.path.realpath(__file__)).replace('/bin', '')
sys.path.insert(1, partis_dir) # + '/python')
import python.utils as utils
import python.glutils as glutils
from python.clusterpath import ClusterPath
import python.paircluster as paircluster
# ----------------------------------------------------------------------------------------
def count_plot(tglfo, tlist, plotdir, paired_loci=None):
if len(tlist) == 0:
return
if args.plot_tree_mut_stats:
import python.plotting as plotting
plotting.plot_tree_mut_stats(plotdir, tlist, args.is_simu, only_leaves=args.only_plot_leaves, treefname=args.treefname)
plotting.make_html(plotdir)
return
if args.only_count_correlations:
from python.corrcounter import CorrCounter
ccounter = CorrCounter(paired_loci=paired_loci)
for line in tlist:
l_info = None
if paired_loci is not None:
line, l_info = line
ccounter.increment(line, l_info=l_info)
ccounter.plot(plotdir + '/correlations', only_csv=args.only_csv_plots, debug=args.debug)
return
if args.simfname is not None:
simglfo, true_antn_list, _ = utils.read_output(args.simfname)
true_antn_dict = {}
for true_line in true_antn_list:
for iseq, uid in enumerate(true_line['unique_ids']):
true_antn_dict[uid] = utils.synthesize_single_seq_line(true_line, iseq)
# true_antn_dict = utils.get_annotation_dict(true_antn_list)
from python.performanceplotter import PerformancePlotter
perfplotter = PerformancePlotter('hmm')
n_failed = 0
for line in tlist:
if line['invalid']:
n_failed += 1
continue
for iseq, uid in enumerate(line['unique_ids']): # NOTE this counts rearrangement-level parameters once for every mature sequence, which is inconsistent with the pcounters... but I think might make more sense here?
_ = perfplotter.evaluate(true_antn_dict[uid], utils.synthesize_single_seq_line(line, iseq), simglfo=simglfo)
perfplotter.plot(args.plotdir, only_csv=args.only_csv_plots)
if n_failed > 0:
print(' %s %d / %d failed queries' % (utils.color('yellow', 'warning'), n_failed, len([u for l in tlist for u in l['unique_ids']])))
if args.only_plot_performance:
return
assert not args.paired # only handled for correlation counting atm
from python.parametercounter import ParameterCounter
setattr(args, 'region_end_exclusions', {r : [0 for e in ['5p', '3p']] for r in utils.regions}) # hackity hackity hackity
pcounter = ParameterCounter(tglfo, args) # NOTE doesn't count correlations by default
for line in tlist:
pcounter.increment(line)
pcounter.plot(plotdir, only_csv=args.only_csv_plots, only_overall=args.only_overall_plots) #, make_per_base_plots=True) , make_per_base_plots=True
# ----------------------------------------------------------------------------------------
helpstr = """
Extract sequences from a partis output file and write them to a fasta, csv, or tsv file, optionally with a limited amount of extra information for each sequence.
For details of partis output files, see the manual.
To view the partitions and annotations in a partis output file, use the partis \'view-output\' action.
Example usage:
bin/parse-output.py test/reference-results/partition-new-simu.yaml out.fa
bin/parse-output.py test/paired/ref-results/partition-new-simu outdir --paired
"""
class MultiplyInheritedFormatter(argparse.RawTextHelpFormatter, argparse.ArgumentDefaultsHelpFormatter):
pass
formatter_class = MultiplyInheritedFormatter
parser = argparse.ArgumentParser(formatter_class=MultiplyInheritedFormatter, description=helpstr)
parser.add_argument('infile', help='partis output file from which to read input')
parser.add_argument('outfile', help='File to which to write output extracted from <infile> (fasta or csv/tsv). If --paired is set, this must be a directory, to which will be written a fasta with all sequences, a yaml with pairing info, and a csv with h/l sequence pairs.')
parser.add_argument('--paired', action='store_true', help='if set, <infile> should be a paired output dir, rather than a single file')
parser.add_argument('--extra-columns', help='colon-separated list of additional partis output columns (beyond sequences), to write to the output file. If writing to a fasta file, the column values are appended after the sequence name, separated by --fasta-info-separator. If writing to csv/tsv, they\'re written as proper, labeled columns.')
parser.add_argument('--partition-index', type=int, help='if set, use the partition at this index in the cluster path, rather than the default of using the best partition')
parser.add_argument('--seed-unique-id', help='if set, take sequences only from the cluster containing this seed sequence, rather than the default of taking all sequences from all clusters')
parser.add_argument('--cluster-index', type=int, help='if set, take sequences only from the cluster at this index in the partition, rather than the default of taking all sequences from all clusters. This index is with respect to the cluster order found in the file (which, in contrast to plots made by --plotdir, is *not* sorted by size)')
parser.add_argument('--sort-by-size', action='store_true', help='if set, sort clusters in partition by decreasing size before applying --cluster-index')
parser.add_argument('--indel-reversed-seqs', action='store_true', help='if set, take sequences that have had any shm indels "reversed" (i.e. insertions are reversed, and deletions are replaced with the germline bases) rather than the default of using sequences from the original input file. Indel-reversed sequences can be convenient because they are by definition the same length as and aligned to the naive sequence.')
parser.add_argument('--glfo-dir', help='Directory with germline info. Only necessary for old-style csv output files. Equivalent to a parameter dir with \'/hmm/germline-sets\' appended.')
parser.add_argument('--template-glfo-dir', help='use this glfo dir as a template when reading --glfo-dir (only used for airr input atm)')
parser.add_argument('--locus', default='igh', help='only used for old-style csv output files')
parser.add_argument('--plotdir', help='if set, plot annotation parameters from infile to --plotdir and exit (you still have to set outfile, sorry, since it\'s nice having it be a positional arg, but it doesn\'t get used for this). To add e.g. per-gene-per-position plots comment/uncomment args in the call below.')
parser.add_argument('--only-count-correlations', action='store_true', help='')
parser.add_argument('--only-plot-performance', action='store_true', help='')
parser.add_argument('--fasta-info-separator', default=' ', help='character to use ')
parser.add_argument('--debug', type=int, default=0)
parser.add_argument('--airr-input', action='store_true', help='read input in AIRR tsv format, and if output file suffix is .yaml write partis output.')
parser.add_argument('--airr-output', action='store_true', help='write output in AIRR tsv format')
parser.add_argument('--skip-other-locus', action='store_true', help='if --airr-output is set, this tells us to skip lines from the other locus')
parser.add_argument('--skip-columns', help='don\'t write these columns to output (atm only implemented for airr output, since we need to remove the clone_id column so scoper doesn\'t crash)')
parser.add_argument('--simfname', help='simulation file corresponding to input file (i.e. presumably <infile> is inference that was performed on --simfname')
parser.add_argument('--only-csv-plots', action='store_true', help='only write csv versions of plots (not svg), which is a lot faster')
parser.add_argument('--only-make-plots', action='store_true', help='if --plotdir is set, set this to only do plotting, i.e. don\'t do the usual/default file reading/conversion')
parser.add_argument('--plot-tree-mut-stats', action='store_true', help='plot tree mutation stats and exit')
parser.add_argument('--only-plot-leaves', action='store_true', help='only affects --plot-tree-mut-stats')
parser.add_argument('--is-simu', action='store_true', help='only affects --plot-tree-mut-stats')
parser.add_argument('--only-overall-plots', action='store_true', help='TODO')
parser.add_argument('--treefname', help='only affects --plot-tree-mut-stats')
parser.add_argument('--meta-info-key-to-color', help='see partis help')
parser.add_argument('--meta-emph-formats', help='see partis help')
parser.add_argument('--meta-info-to-emphasize', help='see partis help')
if 'extract-fasta.py' in sys.argv[0]: # if they're trying to run this old script, which is now just a link to this one, print a warning and rejigger the arguments so it still works
print(' note: running deprecated script %s, which currently is just a link pointing to %s' % (os.path.basename(sys.argv[0]), os.path.basename(os.path.realpath( __file__))))
print(' note: transferring deprecated arguments --input-file and --fasta-output-file to the first two positional arguments (this will continue to work, you only need to change things if you want this warning to go away)')
utils.insert_in_arglist(sys.argv, [utils.get_val_from_arglist(sys.argv, '--input-file'), utils.get_val_from_arglist(sys.argv, '--fasta-output-file')], sys.argv[0])
utils.remove_from_arglist(sys.argv, '--input-file', has_arg=True)
utils.remove_from_arglist(sys.argv, '--fasta-output-file', has_arg=True)
args = parser.parse_args()
args.extra_columns = utils.get_arg_list(args.extra_columns)
args.meta_emph_formats = utils.get_arg_list(args.meta_emph_formats, key_val_pairs=True)
utils.meta_emph_arg_process(args)
if args.paired:
if utils.getsuffix(args.outfile) != '':
raise Exception('--outfile \'%s\' must be a directory, but it has a non-empty suffix \'%s\'' % (args.outfile, utils.getsuffix(args.outfile)))
else:
assert utils.getsuffix(args.outfile) in ['.csv', '.tsv', '.fa', '.fasta', '.yaml'] # or args.airr_input and utils.getsuffix(args.outfile) == '.yaml'
default_glfo_dir = partis_dir + '/data/germlines/human'
if utils.getsuffix(args.infile) in ['.csv', '.tsv'] and args.glfo_dir is None:
print(' note: reading csv/tsv format without germline info, so need to get germline info from a separate directory; --glfo-dir was not set, so using default %s. If it doesn\'t crash, it\'s probably ok.' % default_glfo_dir)
args.glfo_dir = default_glfo_dir
# ----------------------------------------------------------------------------------------
# read input
if args.paired:
if not os.path.isdir(args.infile):
raise Exception('--infile \'%s\' either doesn\'t exist or it isn\'t a directory' % args.infile)
lp_infos = paircluster.read_paired_dir(args.infile)
else:
if args.airr_input:
glfo, glfd = None, args.glfo_dir
if args.template_glfo_dir is not None: # NOTE only handled for airr input at the moment, cause that's what i need it for right now
glfo = glutils.read_glfo(args.glfo_dir, args.locus, template_glfo=glutils.read_glfo(args.template_glfo_dir, args.locus))
# glutils.write_glfo(args.glfo_dir + '-parsed', glfo, debug=True)
glfd = None
glfo, annotation_list, cpath = utils.read_airr_output(args.infile, locus=args.locus, glfo=glfo, glfo_dir=glfd, skip_other_locus=args.skip_other_locus)
else:
glfo, annotation_list, cpath = utils.read_output(args.infile, glfo_dir=args.glfo_dir, locus=args.locus)
# plot
if args.plotdir is not None:
if args.paired:
for lpair in utils.locus_pairs['ig']:
if lp_infos[tuple(lpair)]['glfos'] is None:
continue
for ltmp in lpair:
count_plot(lp_infos[tuple(lpair)]['glfos'][ltmp], lp_infos[tuple(lpair)]['antn_lists'][ltmp], '%s/%s/%s'%(args.plotdir, '+'.join(lpair), ltmp))
antn_pairs = paircluster.find_cluster_pairs(lp_infos, lpair) #, debug=True)
count_plot(None, antn_pairs, '%s/%s'%(args.plotdir, '+'.join(lpair)), paired_loci=[l['loci'][0] for l in antn_pairs[0]])
else:
count_plot(glfo, annotation_list, args.plotdir)
if args.only_make_plots:
sys.exit(0)
if args.paired:
glfos, antn_lists, cpaths = paircluster.concat_heavy_chain(utils.locus_pairs['ig'], lp_infos, dont_deep_copy=True) # NOTE this is a pretty arbitrary way to combine the partitions for the seqs with uncertain pairing info, but whatever
outfos, metafos = paircluster.get_combined_outmetafos(antn_lists)
paircluster.write_combined_fasta_and_meta('%s/all-seqs.fa'%args.outfile, '%s/meta.yaml'%args.outfile, outfos, metafos)
outfos = paircluster.find_seq_pairs(antn_lists)
print(' writing sequence id pairs to %s' % '%s/seq-pairs.csv'%args.outfile)
with open('%s/seq-pairs.csv'%args.outfile, utils.csv_wmode()) as cfile:
okeys = ['%s_%s'%(c, s) for s in ('id', 'locus', 'seq') for c in 'hl']
writer = csv.DictWriter(cfile, okeys) # sorted(outfos[0].keys()))
writer.writeheader()
for ofo in outfos:
writer.writerow({k : ofo[k] for k in okeys})
if args.airr_output:
for ltmp in sorted(glfos):
utils.write_airr_output('%s/%s.tsv'%(args.outfile, ltmp), antn_lists[ltmp], cpath=cpaths[ltmp], glfo=glfos[ltmp])
sys.exit(0)
# restrict to certain partitions/clusters
if cpath is None or cpath.i_best is None:
clusters_to_use = [l['unique_ids'] for l in annotation_list]
print(' no cluster path in input file, so just using all %d sequences (in %d clusters) in annotations' % (sum(len(c) for c in clusters_to_use), len(clusters_to_use)))
else:
ipartition = cpath.i_best if args.partition_index is None else args.partition_index
print(' found %d clusters with %d seqs in %s' % (len(cpath.partitions[ipartition]), sum(len(c) for c in cpath.partitions[ipartition]), 'best partition' if args.partition_index is None else 'partition at index %d (of %d)' % (ipartition, len(cpath.partitions))))
modified = False
if args.cluster_index is None:
clusters_to_use = cpath.partitions[ipartition]
print(' taking all %d clusters' % len(clusters_to_use))
else:
ptn = cpath.partitions[ipartition]
if args.sort_by_size:
ptn = sorted(cpath.partitions[ipartition], key=len, reverse=True)
clusters_to_use = [ptn[args.cluster_index]]
modified = True
print(' taking cluster at index %d with size %d%s' % (args.cluster_index, len(clusters_to_use[0]), ' after sorting by size' if args.sort_by_size else ''))
if args.seed_unique_id is not None:
clusters_to_use = [c for c in clusters_to_use if args.seed_unique_id in c] # NOTE can result in more than one cluster with the seed sequence (e.g. if this file contains intermediate annotations from seed partitioning))
modified = True
print(' removing clusters not containing sequence \'%s\' (leaving %d)' % (args.seed_unique_id, len(clusters_to_use)))
if modified:
cpath = ClusterPath(partition=clusters_to_use, seed_unique_id=args.seed_unique_id)
antn_dict = utils.get_annotation_dict(annotation_list)
annotation_list = [antn_dict[':'.join(c)] for c in clusters_to_use if ':'.join(c) in antn_dict]
if not os.path.exists(os.path.dirname(os.path.abspath(args.outfile))):
os.makedirs(os.path.dirname(os.path.abspath(args.outfile)))
if args.airr_output:
print(' writing %d annotations%s to %s' % (len(annotation_list), '' if cpath is None else ' (with partition: %d seqs in %d clusters)'%(sum(len(c) for c in cpath.best()), len(cpath.best())), args.outfile))
utils.write_airr_output(args.outfile, annotation_list, cpath=cpath, extra_columns=args.extra_columns, skip_columns=args.skip_columns)
sys.exit(0)
# condense partis info into <seqfos> for fasta/csv output
n_skipped, n_failed_to_add = 0, 0
seqfos = []
antn_dict = utils.get_annotation_dict(annotation_list)
for cluster in clusters_to_use:
if ':'.join(cluster) not in antn_dict:
n_skipped += 1
# print ' %s cluster with size %d not in annotations, so skipping it' % (utils.color('yellow', 'warning'), len(cluster))
continue
cluster_annotation = antn_dict[':'.join(cluster)]
newfos = [{'name' : u, 'seq' : s} for u, s in zip(cluster_annotation['unique_ids'], cluster_annotation['seqs' if args.indel_reversed_seqs else 'input_seqs'])]
if args.extra_columns is not None:
for ecol in args.extra_columns:
if ecol not in cluster_annotation:
utils.add_extra_column(ecol, cluster_annotation, cluster_annotation, glfo=glfo)
if ecol not in cluster_annotation:
n_failed_to_add += 1
cluster_annotation[ecol] = None
for iseq in range(len(newfos)):
ival = cluster_annotation[ecol]
if ival is not None and ecol in utils.linekeys['per_seq']:
ival = ival[iseq]
newfos[iseq][ecol] = ival
seqfos += newfos
if n_skipped > 0:
print(' missing annotations for %d sequences' % n_skipped)
if n_failed_to_add > 0:
print(' %s couldn\'t add \'%s\' to %d / %d annotations' % (utils.wrnstr(), ecol, n_failed_to_add, len(clusters_to_use) - n_skipped))
# write output
with open(args.outfile, utils.csv_wmode()) as ofile:
if utils.getsuffix(args.outfile) in ['.csv', '.tsv']:
print(' writing %d sequences to %s' % (len(seqfos), args.outfile))
writer = csv.DictWriter(ofile, list(seqfos[0].keys()), delimiter=str(',') if utils.getsuffix(args.outfile)=='.csv' else '\t')
writer.writeheader()
for sfo in seqfos:
writer.writerow(sfo)
elif utils.getsuffix(args.outfile) in ['.fa', '.fasta']:
print(' writing %d sequences to %s' % (len(seqfos), args.outfile))
for sfo in seqfos:
estr = ''
if args.extra_columns is not None:
estr = args.fasta_info_separator
estr += args.fasta_info_separator.join(str(sfo[c]) for c in args.extra_columns)
ofile.write('>%s%s\n%s\n' % (sfo['name'], estr, sfo['seq']))
elif utils.getsuffix(args.outfile) == '.yaml':
true_partition = None
if args.simfname is not None:
print(' reading true partition from %s' % args.simfname)
_, _, true_cpath = utils.read_output(args.simfname, skip_annotations=True)
true_partition = true_cpath.best()
plines = cpath.get_partition_lines(true_partition=true_partition, calc_missing_values='none' if true_partition is None else 'best')
print(' writing %d annotations with %d partition%s to %s' % (len(annotation_list), len(plines), utils.plural(len(plines)), args.outfile))
utils.write_annotations(args.outfile, glfo, annotation_list, utils.add_lists(utils.annotation_headers, args.extra_columns), partition_lines=plines)
else:
assert False