Mercurial > repos > fabio > sbtas_se
diff query.py @ 8:256d015d69f9 draft
Uploaded 20180131
author | fabio |
---|---|
date | Wed, 31 Jan 2018 16:05:19 -0500 |
parents | 97dd57f81d77 |
children | 027f2e9d4a25 |
line wrap: on
line diff
--- a/query.py Wed Jan 31 15:58:42 2018 -0500 +++ b/query.py Wed Jan 31 16:05:19 2018 -0500 @@ -97,7 +97,7 @@ with open(file_path, 'r') as content_file: for line in content_file: if line.strip() != "": - line_split = line.strip().split("__tc__"); # split on tab + line_split = line.strip().split("\t"); # split on tab if len(line_split) == 2: # 0:id , 1:seq , otherwise skip line seq_id = line_split[0]; seq_text = line_split[1];