You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When viewing e.g. https://github.com/ipb-halle/biobyte/blob/master/feat_list.tsv
GitHub is complaining We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 16 columns, instead of 17. in line 1. which is caused because we have (fairly non-descript) row names, e.g. "pos_166", and similarly Galaxy could format them nicer
if all rows have the same number of columns. Maybe adding rownames column header and telling read.table() about it. But not today.
Yours, Steffen
The text was updated successfully, but these errors were encountered:
Hi, our feature lists are being read by
feat_list <- read.table(file=args[1], header=TRUE, quote="\"", sep="\t")
in e.g. https://github.com/ipb-halle/biobyte/blob/master/scripts/heatmap.r#L36When viewing e.g. https://github.com/ipb-halle/biobyte/blob/master/feat_list.tsv
GitHub is complaining
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 16 columns, instead of 17. in line 1.
which is caused because we have (fairly non-descript) row names, e.g."pos_166"
, and similarly Galaxy could format them nicerif all rows have the same number of columns. Maybe adding
rownames
column header and tellingread.table()
about it. But not today.Yours, Steffen
The text was updated successfully, but these errors were encountered: