mdozmorov / genome_runner

Academic Free License v3.0
0 stars 3 forks source link

rsID annotation bug #47

Closed mdozmorov closed 10 years ago

mdozmorov commented 10 years ago

If providing rsID list, enrichment analysis runs, but the annotation tab throws a web-page error:

DataTables warning (table_is='dt_rsidsorted'): Requested unknown parameter '3' from the data source for row 0

And the output is unusable

mdozmorov commented 10 years ago

Looks like the bed file is not tab-delimited, we need to check python code using awk to convert spaces to tabs

mdozmorov commented 10 years ago

Use sed 's/\ /\t/g' instead of awk, can do.