About twise faster than all theese variants (at least at python 2.7.2)
seq_2 = set()
# Here I use generator. So I escape .append lookup and list resizing
def F(f):
# local memory
local_seq_2 = set()
# lookup escaping
local_seq_2_add = local_seq_2.add
# static variables
linker ='CTGTAGGCACCATCAAT'
linker_range = range(len(linker))
for line in f:
line_1=line[:-1]
for i in linker_range:
if line_1[-i:] == linker[:i]:
local_seq_2_add(line)
yield '>\n' + line_1[:-i] + '\n'
# push local memory to the global
global seq_2
seq_2 = local_seq_2
# here we consume all data
seq_1 = tuple(F(f))
Yes, it's ugly and non-pythonic, but it is the fastest way to do the job.
You can also upgrade this code with with open('file.name') as f: inside generator or add some other logic.
Note:
This place '>\n' + line_1[:-i] + '\n' - is doubtful. On some machines it is the fastest way to concat strings. On some machines the fastest way is '>\n'%s'\n'%line_1[:-i] or ''.join(('>\n',line_1[:-i],'\n')) (in version without lookup, of course). I dont know what will be best for you.
It is strange, but new formatter '{}'.format(..) on my computer shows the slowest result.