obi import: fixed writing quality in views when appropriate (but still

not a satisfying solution)
This commit is contained in:
Celine Mercier
2018-12-11 19:33:55 +01:00
parent c437931a35
commit 2a6a112d29

View File

@ -129,15 +129,11 @@ def run(config):
else:
raise NotImplementedError()
get_quality = config["obi"]["noquality"]
# Save basic columns in variables for optimization
if NUC_SEQS_view :
id_col = view[b"ID"] # TODO use macros or globals for column names
def_col = view[b"DEFINITION"]
seq_col = view[b"NUC_SEQ"]
if get_quality:
qual_col = view[b"QUALITY"]
dcols = {}
@ -150,7 +146,13 @@ def run(config):
id_col[i] = entry.id
def_col[i] = entry.definition
seq_col[i] = entry.seq
if get_quality :
# Check if there is a sequencing quality associated by checking the first entry # TODO haven't found a more robust solution yet
if i == 0:
get_quality = b"QUALITY" in entry
if get_quality:
Column.new_column(view, b"QUALITY", OBI_QUAL)
qual_col = view[b"QUALITY"]
if get_quality:
qual_col[i] = entry.quality
for tag in entry :