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
|
#!/usr/bin/python3
import optparse
import sys
import os
import gzip
import re
#
# Global configuration variables.
#
path = ""
aln_path = ""
out_path = ""
batch_id = -1
def parse_command_line():
global out_path
global aln_path
global path
global batch_id
p = optparse.OptionParser()
#
# Add options.
#
p.add_option("-o", action="store", dest="out_path",
help="write modified Stacks files to this output path.")
p.add_option("-a", action="store", dest="aln_path",
help="SAM file containing catalog locus alignments.")
p.add_option("-p", action="store", dest="path",
help="path to Stacks directory.")
p.add_option("-b", action="store", dest="batch_id",
help="Stacks batch ID.")
#
# Parse the command line
#
(opts, args) = p.parse_args()
if opts.out_path != None:
out_path = opts.out_path
if opts.aln_path != None:
aln_path = opts.aln_path
if opts.path != None:
path = opts.path
if opts.batch_id != None:
batch_id = int(opts.batch_id)
if len(out_path) == 0 or os.path.exists(out_path) == False:
print("You must specify a valid path to write files to.", file=sys.stderr)
p.print_help()
sys.exit()
if out_path.endswith("/") == False:
out_path += "/"
if len(aln_path) == 0 or os.path.exists(aln_path) == False:
print("You must specify a valid path to a SAM file containing catalog locus alignments.", file=sys.stderr)
p.print_help()
sys.exit()
if len(path) == 0 or os.path.exists(path) == False:
print("You must specify a valid path to Stacks input files.", file=sys.stderr)
p.print_help()
sys.exit()
if batch_id < 0:
pritn >> sys.stderr, "You must specify the batch ID that was supplied to Stacks."
p.print_help()
sys.exit()
if path.endswith("/") == False:
path += "/"
def find_stacks_files(path, files):
try:
entries = os.listdir(path)
for entry in entries:
pos = entry.find(".matches.tsv.gz")
if (pos == -1):
pos = entry.find(".matches.tsv")
if (pos != -1):
files.append(entry[0:pos])
print("Found", len(files), "Stacks samples.", file=sys.stderr)
except:
print("Unable to read files from Stacks directory, '", path, "'", file=sys.stderr)
def parse_catalog_alignments(aln_path, alns):
fh = open(aln_path, "r")
for line in fh:
line = line.strip("\n")
if len(line) == 0 or line[0] == "#" or line[0] == "@":
continue
parts = line.split("\t")
locus = int(parts[0])
chr = parts[2]
bp = int(parts[3])
flag = int(parts[1])
#
# Check which strand the read is aligned to.
#
if flag & 16 > 0:
alns[locus] = (chr, bp, "-");
else:
alns[locus] = (chr, bp, "+");
fh.close()
print("Loaded", len(alns), "catalog locus alignments from '", aln_path, "'.", file=sys.stderr)
def convert_sample(path, file, out_path, alns):
matches = {}
#
# Open the matches file and load the matches to the catalog.
#
p = path + file + ".matches.tsv.gz"
if os.path.exists(p):
gzipped = True;
fh = gzip.open(p, 'rb')
else:
gzipped = False;
fh = open(path + file + ".matches.tsv", "r")
for line in fh:
line = line.strip("\n")
if len(line) == 0 or line[0] == "#":
continue
parts = line.split("\t")
cat_locus = int(parts[2])
sample_locus = int(parts[4])
matches[sample_locus] = cat_locus
fh.close()
#
# Open the tags file and rewrite it with the alignment coordinates.
#
if gzipped:
fh = gzip.open(path + file + ".tags.tsv.gz", "rb")
else:
fh = open(path + file + ".tags.tsv", "r")
out_fh = open(out_path + file + ".tags.tsv", "w")
alns_written = {}
for line in fh:
if line[0] == "#":
out_fh.write(line)
continue
if len(line) == 0:
continue
parts = line.split("\t")
sample_locus = int(parts[2])
read_type = parts[6]
if read_type == "consensus":
if sample_locus not in matches:
continue;
cat_locus = matches[sample_locus]
if cat_locus not in alns:
continue;
(chr, bp, strand) = alns[cat_locus]
if sample_locus in alns_written:
alns_written[sample_locus] += 1
else:
alns_written[sample_locus] = 1;
buf = "\t".join(parts[0:3]) + "\t" + chr + "\t" + str(bp) + "\t" + strand + "\t" + "\t".join(parts[6:])
out_fh.write(buf)
elif sample_locus in alns_written:
out_fh.write(line)
fh.close()
out_fh.close()
#
# Open the SNPs, Alleles, and Matches files and rewrite those that had alignment coordinates.
#
if gzipped:
fh = gzip.open(path + file + ".snps.tsv.gz", "rb")
else:
fh = open(path + file + ".snps.tsv", "r")
out_fh = open(out_path + file + ".snps.tsv", "w")
for line in fh:
if line[0] == "#":
out_fh.write(line)
continue
if len(line) == 0:
continue
parts = line.split("\t")
sample_locus = int(parts[2])
if sample_locus in alns_written:
out_fh.write(line)
fh.close()
out_fh.close()
if gzipped:
fh = gzip.open(path + file + ".alleles.tsv.gz", "rb")
else:
fh = open(path + file + ".alleles.tsv", "r")
out_fh = open(out_path + file + ".alleles.tsv", "w")
for line in fh:
if line[0] == "#":
out_fh.write(line)
continue
if len(line) == 0:
continue
parts = line.split("\t")
sample_locus = int(parts[2])
if sample_locus in alns_written:
out_fh.write(line)
fh.close()
out_fh.close()
if gzipped:
fh = gzip.open(path + file + ".matches.tsv.gz", "rb")
else:
fh = open(path + file + ".matches.tsv", "r")
out_fh = open(out_path + file + ".matches.tsv", "w")
for line in fh:
if line[0] == "#":
out_fh.write(line)
continue
if len(line) == 0:
continue
parts = line.split("\t")
sample_locus = int(parts[2])
if sample_locus in alns_written:
out_fh.write(line)
fh.close()
out_fh.close()
#
# If it exists, open the model file and rewrite it with the alignment coordinates.
#
if gzipped:
if os.path.exists(path + file + ".models.tsv.gz") == False:
return len(alns_written)
elif os.path.exists(path + file + ".models.tsv") == False:
return len(alns_written)
if gzipped:
fh = gzip.open(path + file + ".models.tsv.gz", "rb")
else:
fh = open(path + file + ".models.tsv", "r")
out_fh = open(out_path + file + ".models.tsv", "w")
for line in fh:
if line[0] == "#":
out_fh.write(line)
continue
if len(line) == 0:
continue
parts = line.split("\t")
sample_locus = int(parts[2])
read_type = parts[6]
if sample_locus in alns_written:
if read_type == "consensus":
cat_locus = matches[sample_locus]
(chr, bp, strand) = alns[cat_locus]
buf = "\t".join(parts[0:3]) + "\t" + chr + "\t" + str(bp) + "\t" + strand + "\t" + "\t".join(parts[6:])
out_fh.write(buf)
else:
out_fh.write(line)
fh.close()
out_fh.close()
return len(alns_written)
def convert_catalog(path, batch_id, out_path, alns):
#
# Open the tags file and rewrite it with the alignment coordinates.
#
p = path + "batch_" + str(batch_id) + ".catalog.tags.tsv.gz"
if os.path.exists(p):
gzipped = True;
fh = gzip.open(path + "batch_" + str(batch_id) + ".catalog.tags.tsv.gz", "rb")
else:
gzipped = False;
fh = open(path + "batch_" + str(batch_id) + ".catalog.tags.tsv", "r")
out_fh = open(out_path + "batch_" + str(batch_id) + ".catalog.tags.tsv", "w")
alns_written = {}
for line in fh:
if line[0] == "#":
out_fh.write(line)
continue
if len(line) == 0:
continue
parts = line.split("\t")
cat_locus = int(parts[2])
if cat_locus not in alns:
continue;
(chr, bp, strand) = alns[cat_locus]
if cat_locus in alns_written:
alns_written[cat_locus] += 1
else:
alns_written[cat_locus] = 1;
buf = "\t".join(parts[0:3]) + "\t" + chr + "\t" + str(bp) + "\t" + strand + "\t" + "\t".join(parts[6:])
out_fh.write(buf)
fh.close()
out_fh.close()
if gzipped:
fh = gzip.open(path + "batch_" + str(batch_id) + ".catalog.snps.tsv.gz", "rb")
else:
fh = open(path + "batch_" + str(batch_id) + ".catalog.snps.tsv", "r")
out_fh = open(out_path + "batch_" + str(batch_id) + ".catalog.snps.tsv", "w")
for line in fh:
if line[0] == "#":
out_fh.write(line)
continue
if len(line) == 0:
continue
parts = line.split("\t")
cat_locus = int(parts[2])
if cat_locus in alns_written:
out_fh.write(line)
fh.close()
out_fh.close()
if gzipped:
fh = gzip.open(path + "batch_" + str(batch_id) + ".catalog.alleles.tsv.gz", "rb")
else:
fh = open(path + "batch_" + str(batch_id) + ".catalog.alleles.tsv", "r")
out_fh = open(out_path + "batch_" + str(batch_id) + ".catalog.alleles.tsv", "w")
for line in fh:
if line[0] == "#":
out_fh.write(line)
continue
if len(line) == 0:
continue
parts = line.split("\t")
cat_locus = int(parts[2])
if cat_locus in alns_written:
out_fh.write(line)
fh.close()
out_fh.close()
return len(alns_written)
parse_command_line()
files = []
alns = {}
find_stacks_files(path, files)
parse_catalog_alignments(aln_path, alns)
i = 1
for file in files:
print("Processing file", str(i), "of", len(files), "['" + file + "']", file=sys.stderr)
cnt = convert_sample(path, file, out_path, alns)
print(" Added alignments for", cnt, "loci.", file=sys.stderr)
i += 1
#
# Now process the catalog.
#
print("Processing the catalog", file=sys.stderr)
cnt = convert_catalog(path, batch_id, out_path, alns)
print(" Added alignments for", cnt, "catalog loci.", file=sys.stderr)
|