Skip to content
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

Curation coverage functions #116

Open
wdahdul opened this issue Nov 8, 2019 · 1 comment
Open

Curation coverage functions #116

wdahdul opened this issue Nov 8, 2019 · 1 comment

Comments

@wdahdul
Copy link
Contributor

wdahdul commented Nov 8, 2019

These pertain to the data science/statistics user story "Curation Coverage"

  1. function for reporting a summary of the data annotated in the KB for a taxon or list of taxa. In addition to taxon name and number of phenotypes, also include the family and order of each taxon.

  2. function for reporting the entities annotated for a taxon or list of taxa. Include entity name and number of phenotypes.This is similar to the “print_coverage” function in paramo (copied below), although that function extracts information from a matrix including inferred data.

#' Function to display the number of matching species and average value across them from an Ontotrace matrix
#' @export
print_coverage <- function(x){
  coverage <- apply(x, 2, function(x) sum(!is.na(x)))
  average <- sapply(x, function(x) mean(as.numeric(na.omit(x[x %in% c("0", "1")])), na.rm=TRUE))
  cover <- cbind(coverage, average)
  tmp <- filter(data.frame(traits=rownames(cover), cover), coverage > 0, average < 1, average > 0) %>% arrange(., desc(coverage))
  print(tmp)
}
#The table that prints out shows the number of taxa for which there is data in the KB ( coverage ) and the proportion of taxa ( average ) that have this trait (all of these are binary, presence/absence characters).

@wdahdul wdahdul added this to To do in SSB 2020 Workshop Prep via automation Nov 8, 2019
@hlapp
Copy link
Member

hlapp commented Nov 4, 2022

@wdahdul could you comment on how important you would consider having this for the upcoming 2023 TraitFest event?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Development

No branches or pull requests

2 participants