I'm trying to build a randomized dataset based on an input dataset. The input dataset consists of 856471 lines, and in each line there is a pair of values separated by a tab. NO entry from the randomized dataset can be equal to any of those in the input dataset, this means:
If the pair in line 1 is "Protein1 Protein2", the randomized dataset cannot contain the following pairs:
- "Protein1 Protein2"
- "Protein2 Protein1"
In order to achieve this I tried the following:
data = infile.readlines()
ltotal = len(data)
for line in data:
words = string.split(line)
init = 0
while init != ltotal:
p1 = random.choice(words)
p2 = random.choice(words)
words.remove(p1)
words.remove(p2)
if "%s\t%s\n" % (p1, p2) not in data and "%s\t%s\n" % (p2, p1) not in data:
outfile.write("%s\t%s\n" % (p1, p2))
However, I'm getting the following error:
Traceback (most recent call last): File
"C:\Users\eduarte\Desktop\negcreator.py", line 46, in <module>
convert(indir, outdir) File "C:\Users\eduarte\Desktop\negcreator.py", line 27, in convert
p1 = random.choice(words) File "C:\Python27\lib\random.py", line 274, in choice
return seq[int(self.random() * len(seq))] # raises IndexError if seq is empty
IndexError: list index out of range
I was pretty sure this would work. What am I doing wrong? Thanks in advance.