I am trying to write a program in python that parses out lines of data that match certain criteria from an input file to a series of output files.
This program reads an input file containing the start and stop positions of genes on a chromosome. For each line of this input file, it opens a second input file line-by-line that contains the locations of known SNPs on the chromosome of interest. If the SNP is located between the start and stop position of the gene being iterated, it is copied to a new file.
The problem with my program as it stands is that it is inefficient. For each gene being analyzed, the program starts reading the input file of SNP data from the very first line and does not stop until it reaches a SNP that is located on a chromosomal position that is greater (i.e. has a higher position number) than the stop position of the gene being iterated. As all the gene and SNP data is ordered by chromosomal location, the speed and efficiency of my program would be greatly improved if, for each gene being iterated, I could somehow ‘tell’ my program to start reading the input file of SNP location data from the last line that was read in the last iteration; rather than from the first line of the file.
Is there any way to do this Python? Or do all files have to be read from the first line?
My code so far is below. Any suggestions would be greatly appreciated.
import sys
import fileinput
import shlex
geneCoordinates = open("Gene Coordinates.txt",'r')
geneCoordinates = list(geneCoordinates)
n = (len(geneCoordinates))
nSNPsPerGene=open("C:/Users/gwilymh/Desktop/Python/SNPsPerGene/nSNPs per gene.txt", 'a')
i=0
for i in range(i,n):
x=i
L=shlex.shlex(geneCoordinates[x],posix=True)
L.whitespace += ','
L.whitespace_split = True
L=list(L)
output=open((("C:/Users/gwilymh/Desktop/Python/SNPsPerGene/%s.txt")%(str(L[2]))), 'a')
geneStart=int(L[2])
geneStop=int(L[3])
for line in fileinput.input("SNPs.txt"):
if not fileinput.isfirstline():
nSNPs=0
SNP=shlex.shlex(line,posix=True)
SNP.whitespace += '\t'
SNP.whitespace_split = True
SNP=list(SNP)
SNPlocation=int(SNP[0])
if SNPlocation < geneStart:
continue
if SNPlocation >= geneStart:
if SNPlocation <= geneStop:
nSNPs=nSNPs+1
output.write(str(SNP))
output.write("\n")
else: break
nSNPsPerGene.write(("%s\t%s")%s(str(L[2]),nSNPs))

file.seek()? – Raufio Feb 10 at 21:04