0
+ − 1 #!/usr/bin/env python
+ − 2
+ − 3 import argparse
+ − 4 import csv
+ − 5 import os
4
+ − 6 import subprocess
+ − 7 import sys
+ − 8 import tempfile
0
+ − 9
4
+ − 10 import Bio.SeqIO
0
+ − 11 import numpy
+ − 12 import pandas
+ − 13 import matplotlib.pyplot as pyplot
+ − 14
+ − 15
4
+ − 16 def load_fasta(fasta_file):
+ − 17 sequence = pandas.Series(dtype=object)
+ − 18 for contig in Bio.SeqIO.parse(fasta_file, 'fasta'):
+ − 19 sequence[contig.id] = contig
+ − 20 return sequence
+ − 21
+ − 22
+ − 23 def run_command(cmd):
+ − 24 try:
+ − 25 tmp_name = tempfile.NamedTemporaryFile(dir=".").name
+ − 26 tmp_stderr = open(tmp_name, 'wb')
+ − 27 proc = subprocess.Popen(args=cmd, shell=True, stderr=tmp_stderr.fileno())
+ − 28 returncode = proc.wait()
+ − 29 tmp_stderr.close()
+ − 30 if returncode != 0:
+ − 31 # Get stderr, allowing for case where it's very large.
+ − 32 tmp_stderr = open(tmp_name, 'rb')
+ − 33 stderr = ''
+ − 34 buffsize = 1048576
+ − 35 try:
+ − 36 while True:
+ − 37 stderr += tmp_stderr.read(buffsize)
+ − 38 if not stderr or len(stderr) % buffsize != 0:
+ − 39 break
+ − 40 except OverflowError:
+ − 41 pass
+ − 42 tmp_stderr.close()
+ − 43 os.remove(tmp_name)
+ − 44 stop_err(stderr)
+ − 45 except Exception as e:
+ − 46 stop_err('Command:\n%s\n\nended with error:\n%s\n\n' % (cmd, str(e)))
+ − 47
+ − 48
+ − 49 def stop_err(msg):
+ − 50 sys.stderr.write(msg)
+ − 51 sys.exit(1)
+ − 52
+ − 53
15
+ − 54 def draw_amr_matrix(amr_feature_hits_files, amr_deletions_file, varscan_vcf_file, amr_mutation_regions_bed_file, amr_gene_drug_file, reference, reference_size, mutation_regions_dir, amr_matrix_png_dir, errors):
9
+ − 55 efh = open(errors, 'w')
0
+ − 56 ofh = open('process_log', 'w')
+ − 57
1
+ − 58 # Read amr_feature_hits_files.
+ − 59 amr_feature_hits = pandas.Series(dtype=object)
+ − 60 for amr_feature_hits_file in amr_feature_hits_files:
11
+ − 61 ofh.write("\namr_feature_hits_file: %s\n" % amr_feature_hits_file)
1
+ − 62 feature_name = os.path.basename(amr_feature_hits_file)
11
+ − 63 ofh.write("\nfeature_name: %s\n" % feature_name)
0
+ − 64 # Make sure the file is not empty.
1
+ − 65 if os.path.isfile(amr_feature_hits_file) and os.path.getsize(amr_feature_hits_file) > 0:
+ − 66 best_hits = pandas.read_csv(filepath_or_buffer=amr_feature_hits_file, sep='\t', header=None)
+ − 67 ofh.write("\nFeature file %s will be processed\n" % os.path.basename(amr_feature_hits_file))
0
+ − 68 else:
1
+ − 69 ofh.write("\nEmpty feature file %s will NOT be processed\n" % os.path.basename(amr_feature_hits_file))
0
+ − 70 best_hits = None
1
+ − 71 amr_feature_hits[feature_name] = best_hits
0
+ − 72
17
+ − 73 # Process populated feature hits.
+ − 74 for k in amr_feature_hits.keys():
+ − 75 if amr_feature_hits[k] is not None:
+ − 76 amr_hits = amr_feature_hits[k]
+ − 77 ofh.write("\namr_hits:\n%s\n" % str(amr_hits))
+ − 78 amr_to_draw = pandas.DataFrame(columns=['gene', 'drug'])
+ − 79 ofh.write("\namr_to_draw:\n%s\n" % str(amr_to_draw))
+ − 80 # Read amr_drug_gene_file.
+ − 81 amr_gene_drug = pandas.read_csv(amr_gene_drug_file, index_col=None, sep='\t', quoting=csv.QUOTE_NONE, header=None)
+ − 82 ofh.write("\namr_gene_drug:\n%s\n" % str(amr_gene_drug))
+ − 83
+ − 84 # Roll up AMR gene hits.
+ − 85 ofh.write("\namr_hits.shape[0]: %s\n" % str(amr_hits.shape[0]))
+ − 86 if amr_hits.shape[0] > 0:
+ − 87 for gene_idx, gene in amr_hits.iterrows():
+ − 88 ofh.write("gene_idx: %s\n" % str(gene_idx))
+ − 89 ofh.write("gene: %s\n" % str(gene))
+ − 90 gene_name = gene[3]
+ − 91 ofh.write("gene_name: %s\n" % str(gene_name))
+ − 92 ofh.write("amr_gene_drug[0]: %s\n" % str(amr_gene_drug[0]))
+ − 93 drugs = amr_gene_drug.loc[amr_gene_drug[0] == gene_name, :][1]
+ − 94 ofh.write("drugs: %s\n" % str(drugs))
+ − 95 for drug in drugs:
+ − 96 amr_to_draw = amr_to_draw.append(pandas.Series([gene_name, drug], name=amr_to_draw.shape[0], index=amr_to_draw.columns))
+ − 97 ofh.write("\amr_to_draw: %s\n" % str(amr_to_draw))
0
+ − 98
17
+ − 99 ofh.write("\nvarscan_vcf_file is None: %s\n" % str(varscan_vcf_file == 'None'))
+ − 100 if varscan_vcf_file not in [None, 'None'] and os.path.getsize(varscan_vcf_file) > 0:
+ − 101 amr_mutations = pandas.Series(dtype=object)
+ − 102 if amr_mutation_regions_bed_file is not None:
+ − 103 mutation_regions = pandas.read_csv(amr_mutation_regions_bed_file, header=0, sep='\t', index_col=False)
+ − 104 # Validate mutation regions.
+ − 105 if mutation_regions.shape[1] != 7:
+ − 106 efh.write("The selected mutations regions BED file is invalid, it should be a six column file.\n")
+ − 107 elif mutation_regions.shape[0] == 0:
+ − 108 efh.write("There are no rows in the selected mutation regions file.\n")
+ − 109 else:
+ − 110 for region_i in range(mutation_regions.shape[0]):
+ − 111 region = mutation_regions.iloc[region_i, :]
+ − 112 if region[0] not in reference:
+ − 113 efh.write("Mutation region '%s' not found in reference genome.\n" % str(region))
+ − 114 break
+ − 115 if not isinstance(region[1], numpy.int64):
+ − 116 efh.write("Non-integer found in mutation region start (column 2): %s.\n" % str(region[1]))
+ − 117 break
+ − 118 if not isinstance(region[2], numpy.int64):
+ − 119 efh.write("Non-integer found in mutation region start (column 3): %s.\n" % str(region[2]))
+ − 120 break
+ − 121 if region[1] <= 0 or region[2] <= 0:
+ − 122 efh.write("Mutation region '%s' starts before the reference sequence.\n" % str(region))
+ − 123 if region[1] > len(reference[region[0]].seq) or region[2] > len(reference[region[0]].seq):
+ − 124 efh.write("Mutation region '%s' ends after the reference sequence.\n" % str(region))
+ − 125 if not region.get('type', default='No Type') in ['snp', 'small-indel', 'any']:
+ − 126 ofh.write("\n\nSkipping mutation region '%s' with invalid type '%s', valid types are 'snp', 'small-indel', 'any'.\n\n" % (str(region), str(region.get('type', default='No Type'))))
+ − 127 continue
+ − 128 ofh.write("\nFinding AMR mutations for %s.\n" % str(region['name']))
+ − 129 region_bed = 'region_%s.bed' % region_i
+ − 130 ofh.write("region_bed: %s\n" % str(region_bed))
+ − 131 mutation_regions.loc[[region_i], ].to_csv(path_or_buf=region_bed, sep='\t', header=False, index=False)
+ − 132 ofh.write("mutation_regions.loc[[region_i], ]:\n%s\n" % str(mutation_regions.loc[[region_i], ]))
+ − 133 region_mutations_tsv = os.path.join(mutation_regions_dir, 'region_%s_mutations.tsv' % region_i)
+ − 134 ofh.write("region_mutations_tsv: %s\n" % str(region_mutations_tsv))
+ − 135 cmd = ' '.join(['bedtools intersect',
+ − 136 '-nonamecheck',
+ − 137 '-wb',
+ − 138 '-a', region_bed,
+ − 139 '-b', varscan_vcf_file,
+ − 140 ' | awk \'BEGIN{getline < "' + amr_mutation_regions_bed_file + '";printf $0"\\t";',
+ − 141 'getline < "' + varscan_vcf_file + '"; getline < "' + varscan_vcf_file + '";print $0}{print}\'',
+ − 142 '1>' + region_mutations_tsv])
+ − 143 ofh.write("\ncmd:\n%s\n" % cmd)
+ − 144 run_command(cmd)
+ − 145 try:
+ − 146 ofh.write("After running command, os.path.getsize((region_mutations_tsv): %s\n" % str(os.path.getsize(region_mutations_tsv)))
+ − 147 region_mutations = pandas.read_csv(region_mutations_tsv, sep='\t', header=0, index_col=False)
+ − 148 ofh.write("\nregion_mutations: %s\n" % region_mutations)
+ − 149 except Exception:
+ − 150 continue
+ − 151 # Figure out what kind of mutations are in this region.
+ − 152 region_mutation_types = pandas.Series(['snp'] * region_mutations.shape[0], name='TYPE', index=region_mutations.index)
+ − 153 region_mutation_types[region_mutations['REF'].str.len() != region_mutations['ALT'].str.len()] = 'small-indel'
+ − 154 region_mutation_drugs = pandas.Series(region['drug'] * region_mutations.shape[0], name='DRUG', index=region_mutations.index)
+ − 155 region_notes = pandas.Series(region['note'] * region_mutations.shape[0], name='NOTE', index=region_mutations.index)
+ − 156 region_mutations = pandas.concat([region_mutations, region_mutation_types, region_mutation_drugs, region_notes], axis=1)
+ − 157 region_mutations = region_mutations[['#CHROM', 'POS', 'TYPE', 'REF', 'ALT', 'DRUG', 'NOTE']]
+ − 158 amr_mutations[region['name']] = region_mutations
4
+ − 159 else:
17
+ − 160 ofh.write("\nMutation region BED file not received.\n")
+ − 161 ofh.write("\nAfter processing mutations, amr_mutations: %s\n" % str(amr_mutations))
+ − 162 # Roll up potentially resistance conferring mutations.
+ − 163 ofh.write("\n##### Rolling up potentially resistance conferring mutations..\n")
+ − 164 for mutation_region, mutation_hits in amr_mutations.iteritems():
+ − 165 ofh.write("mutation_region: %s\n" % str(mutation_region))
+ − 166 ofh.write("mutation_hits: %s\n" % str(mutation_hits))
+ − 167 for mutation_idx, mutation_hit in mutation_hits.iterrows():
+ − 168 ofh.write("mutation_idx: %s\n" % str(mutation_idx))
+ − 169 ofh.write("mutation_hit: %s\n" % str(mutation_hit))
+ − 170 mutation_name = mutation_region + ' ' + mutation_hit['REF'] + '->' + mutation_hit['ALT']
+ − 171 ofh.write("mutation_name: %s\n" % str(mutation_name))
+ − 172 amr_to_draw = amr_to_draw.append(pandas.Series([mutation_name, mutation_hit['DRUG']], name=amr_to_draw.shape[0], index=amr_to_draw.columns))
+ − 173 ofh.write("\nAfter processing mutations, amr_to_draw: %s\n" % str(amr_to_draw))
+ − 174 ofh.write("\nAfter processing mutations, amr_to_draw.shape[0]: %s\n" % str(amr_to_draw.shape[0]))
+ − 175
+ − 176 if amr_deletions_file not in [None, 'None'] and os.path.getsize(amr_deletions_file) > 0:
+ − 177 # Roll up deletions that might confer resistance.
+ − 178 try:
+ − 179 amr_deletions = pandas.read_csv(filepath_or_buffer=amr_deletions_file, sep='\t', header=None)
+ − 180 except Exception:
+ − 181 amr_deletions = pandas.DataFrame()
+ − 182 if amr_deletions.shape[0] > 0:
+ − 183 amr_deletions.columns = ['contig', 'start', 'stop', 'name', 'type', 'drug', 'note']
+ − 184 amr_deletions = amr_deletions.loc[amr_deletions['type'].isin(['large-deletion', 'any']), :]
+ − 185 for deletion_idx, deleted_gene in amr_deletions.iterrows():
+ − 186 amr_to_draw = amr_to_draw.append(pandas.Series(['\u0394' + deleted_gene[3], deleted_gene[5]], name=amr_to_draw.shape[0], index=amr_to_draw.columns))
+ − 187 ofh.write("\nAfter processing deletions, amr_to_draw: %s\n" % str(amr_to_draw))
+ − 188
+ − 189 ofh.write("\namr_to_draw.shape[0]: %s\n" % str(amr_to_draw.shape[0]))
+ − 190 # I have no idea why, but when running functional tests with planemo
+ − 191 # the value of amr_to_draw.shape[0] is 1 even though the tests use the
+ − 192 # exact inputs when running outside of planeo that result in the value
+ − 193 # being 2. So we cannot test with planemo unless we incorporate a hack
+ − 194 # like a hidden in_test_mode parameter.
+ − 195 if amr_to_draw.shape[0] > 1:
+ − 196 ofh.write("\nDrawing AMR matrix...\n")
+ − 197 present_genes = amr_to_draw['gene'].unique()
+ − 198 present_drugs = amr_to_draw['drug'].unique()
+ − 199 amr_matrix = pandas.DataFrame(0, index=present_genes, columns=present_drugs)
+ − 200 for hit_idx, hit in amr_to_draw.iterrows():
+ − 201 amr_matrix.loc[hit[0], hit[1]] = 1
+ − 202 amr_matrix_png = os.path.join(amr_matrix_png_dir, 'amr_matrix.png')
+ − 203 int_matrix = amr_matrix[amr_matrix.columns].astype(int)
+ − 204 figure, axis = pyplot.subplots()
+ − 205 heatmap = axis.pcolor(int_matrix, cmap=pyplot.cm.Blues, linewidth=0)
+ − 206 axis.invert_yaxis()
+ − 207 axis.set_yticks(numpy.arange(0.5, len(amr_matrix.index)), minor=False)
+ − 208 axis.set_yticklabels(int_matrix.index.values)
+ − 209 axis.set_xticks(numpy.arange(0.5, len(amr_matrix.columns)), minor=False)
+ − 210 axis.set_xticklabels(amr_matrix.columns.values, rotation=90)
+ − 211 axis.xaxis.tick_top()
+ − 212 axis.xaxis.set_label_position('top')
+ − 213 pyplot.tight_layout()
+ − 214 pyplot.savefig(amr_matrix_png, dpi=300)
4
+ − 215 else:
17
+ − 216 ofh.write("\nEmpty AMR matrix, nothing to draw...\n")
9
+ − 217 efh.close()
0
+ − 218 ofh.close()
+ − 219
+ − 220
+ − 221 if __name__ == '__main__':
+ − 222 parser = argparse.ArgumentParser()
+ − 223
1
+ − 224 parser.add_argument('--amr_feature_hits_dir', action='store', dest='amr_feature_hits_dir', help='Directory of tabular files containing feature hits')
+ − 225 parser.add_argument('--amr_deletions_file', action='store', dest='amr_deletions_file', default=None, help='AMR deletions BED file')
7
+ − 226 parser.add_argument('--varscan_vcf_file', action='store', dest='varscan_vcf_file', default=None, help='Varscan VCF file produced by the call_amr_mutations tool')
+ − 227 parser.add_argument('--amr_mutation_regions_bed_file', action='store', dest='amr_mutation_regions_bed_file', default=None, help='AMR mutation regions BED file')
0
+ − 228 parser.add_argument('--amr_gene_drug_file', action='store', dest='amr_gene_drug_file', help='AMR_gene_drugs tsv file')
4
+ − 229 parser.add_argument('--reference_genome', action='store', dest='reference_genome', help='Reference genome fasta file')
7
+ − 230 parser.add_argument('--mutation_regions_dir', action='store', dest='mutation_regions_dir', help='Directory for mutation regions TSV files produced by this tool')
+ − 231 parser.add_argument('--amr_matrix_png_dir', action='store', dest='amr_matrix_png_dir', help='Directory for PNG files produced by this tool')
9
+ − 232 parser.add_argument('--errors', action='store', dest='errors', help='Output file containing errors')
0
+ − 233
+ − 234 args = parser.parse_args()
+ − 235
4
+ − 236 # Get the collection of feature hits files. The collection
0
+ − 237 # will be sorted alphabetically and will contain 2 files
+ − 238 # named something like AMR_CDS_311_2022_12_20.fasta and
+ − 239 # Incompatibility_Groups_2023_01_01.fasta.
1
+ − 240 amr_feature_hits_files = []
+ − 241 for file_name in sorted(os.listdir(args.amr_feature_hits_dir)):
+ − 242 file_path = os.path.abspath(os.path.join(args.amr_feature_hits_dir, file_name))
+ − 243 amr_feature_hits_files.append(file_path)
0
+ − 244
4
+ − 245 # Load the reference genome into memory.
+ − 246 reference = load_fasta(args.reference_genome)
+ − 247 reference_size = 0
+ − 248 for i in reference:
+ − 249 reference_size += len(i.seq)
+ − 250
16
+ − 251 draw_amr_matrix(amr_feature_hits_files, args.amr_deletions_file, args.varscan_vcf_file, args.amr_mutation_regions_bed_file, args.amr_gene_drug_file, reference, reference_size, args.mutation_regions_dir, args.amr_matrix_png_dir, args.errors)