Last active
August 29, 2015 14:21
-
-
Save gawbul/5744aba6c96b55ba8596 to your computer and use it in GitHub Desktop.
Random FASTQ record seeker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# import modules | |
import os, random, sys | |
# parse arguments | |
if len(sys.argv) != 2: | |
print "Requires one input filename as an argument." | |
sys.exit() | |
filename = sys.argv[1] | |
# check file exists | |
if not os.path.exists(filename): | |
print "Filename doesn't exist." | |
sys.exit() | |
# define variables | |
record_positions = [] | |
line_positions = {} | |
# open file | |
linenum = 0 | |
length = 0 | |
infh = open(filename, 'r') | |
for line in infh: | |
line_positions[linenum] = length | |
if line.startswith("@"): | |
position = line_positions[linenum] | |
record_positions.append(position) | |
length += len(line) | |
linenum += 1 | |
infh.close() | |
# sort positions | |
record_positions = sorted(record_positions) | |
print "Number of records: %d" % len(record_positions) | |
# get random record | |
rnd_record = random.choice(record_positions) | |
rnd_record_idx = record_positions.index(rnd_record) | |
# check that we haven't selected the last record at random | |
if rnd_record_idx == record_positions.index(record_positions[-1]): | |
next_record = rnd_record | |
rnd_record = record_positions[rnd_record_idx - 1] | |
else: | |
next_record = record_positions[rnd_record_idx + 1] | |
print "Selected record positions: %d, %d" % (rnd_record, next_record) | |
print "Record length: %d" % (next_record - rnd_record) | |
# read record | |
infh = open(filename, 'r') | |
infh.seek(rnd_record) | |
record = infh.read((next_record - rnd_record) - 1) | |
infh.close() | |
# display record | |
print "Seq:\n\n%s" % record |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment