We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
as per #28 (comment)
the GETex, Transcripts, and UCSC browsers on only a few gene pages, as indicated by these files
the alias table and the Appyter widgets are displayed on nearly all gene pages. they are different for dev and for staging
Here's what I've done to create these
library(tidyverse) failedgenes <- c("ENSG00000093134", "ENSG00000164393", "ENSG00000184293", "ENSG00000184293", "ENSG00000203812", "ENSG00000188707", "ENSG00000221995", "ENSG00000214534", "ENSG00000225932", "ENSG00000244693", "ENSG00000256374", "ENSG00000263464", "ENSG00000105501", "ENSG00000161133") missinggenes <- read.table("./data/inputs/missing.txt") df <- read.csv("/data/inputs/Gene.csv") %>% arrange(id) %>% filter(!id %in% failedgenes) %>% filter(!id %in% missinggenes$V1) %>% select(id) names(df) <- NULL head(df) write.table(df, "./data/inputs/STAGING_PORTAL__available_genes__2022-07-13.txt", row.names = F, quote = F)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
as per #28 (comment)
the GETex, Transcripts, and UCSC browsers on only a few gene pages, as indicated by these files
the alias table and the Appyter widgets are displayed on nearly all gene pages. they are different for dev and for staging
Here's what I've done to create these
The text was updated successfully, but these errors were encountered: