I have created a table with columns filename,raw_seq and processed seq.my
task is to extract a file from a zipped folder which has a DNA seq of
certain format and to process it to extract only the seq with out any
extract information .I have used "zipfile" library to extact the file and
have done all the processing .But when I have seen the inserted data in the
db it is giving all the path for each column ..
I have used the following code
def records():
'show all recors in plugin_seq db to user'
records = db(db.plugin_seq.id>0).select()
for record in records:
record = db(db.plugin_seq.processed_seq).select()
return record
Do I have to use anĂ½ additional filters to remove the path of file?