-
Notifications
You must be signed in to change notification settings - Fork 15
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
#24 Data retrieval vignette update #72
#24 Data retrieval vignette update #72
Conversation
vignettes/Data_retrieval.Rmd
Outdated
component <- dbGetQuery(con, "SELECTFROM invitrodb.assay_component;") | ||
component <- subset(component, acid %in% source$acid) | ||
endpoint <- dbGetQuery(con, "SELECTFROM invitrodb.assay_component_endpoint;") | ||
endpoint <- endpoint [grepl("ATG", endpoint $assay_component_endpoint_name),] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove space
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
vignettes/Data_retrieval.Rmd
Outdated
source <- tcplLoadAeid(fld="asid",val=1, add.fld = c("aid", "anm", "acid", "acnm")) | ||
#select annotation and subset by ids or name | ||
assay <- dbGetQuery(con, "SELECT * FROM invitrodb.assay where aid=1;") | ||
component <- dbGetQuery(con, "SELECTFROM invitrodb.assay_component;") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"SELECT * FROM" here and line 155
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
Vignette has been updated with new "Assay Annotations" section. Closes #24.