-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Warning: Columns 'name', 'value' are not present in the database and have been removed #128
Comments
The columns |
I suppose I wanted a way to get all possible columns and was surprised to get a warning when using clear (although un-exported) functions. Is there another way to do that? |
No, |
Yes, that sounds reasonable. Or at least not throw a warning but a simple message, if you think that's warranted. |
On a similar note: > ens <- proteins(edb105, listColumns(edb105))
Warning messages:
1: In cleanColumns(object, unique(c(columns, "protein_id"))) :
Columns 'name', 'value' are not present in the database and have been removed
2: In .local(object, ...) :
Exon specific columns are not allowed for proteins. Columns 'exon_id', 'exon_seq_start', 'exon_seq_end', 'exon_idx' have been removed. Is the second warning warranted? As above, I should be able to get all columns for proteins without triggering a warning. |
- `listColumns` does no longer report column names from the metadata database table. This fixes issue #128.
I think the second warning is OK. |
with
The text was updated successfully, but these errors were encountered: