Skip to content

Commit

Permalink
Merge pull request #56 from fungenomics/dev-bhavyaa
Browse files Browse the repository at this point in the history
Clusters app v1.4 update
  • Loading branch information
bhavyaac authored Oct 29, 2021
2 parents e4223f0 + 7e6ce45 commit b61aa90
Show file tree
Hide file tree
Showing 10 changed files with 2,187 additions and 356 deletions.
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ and a data directory `data`.
brain across the lifespan, based on data from the BrainSpan project
* `clusters`: Contains the R code for the shiny app for exploring gene expression
based on clusters from the scRNAseq atlas of the developing mouse forebrain and pons
generated our lab
generated by our lab


## Datasets which can be explored with the app
Expand Down
2 changes: 2 additions & 0 deletions clusters/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ data/*.Rds
data/*.tsv
data/*.feather
data/*.txt
data/*.gz

data/*/*.RData
data/*/*.Rda
data/*/*.Rds
data/*/*.tsv
data/*/*.feather
data/*/*.txt
data/*/*.gz

# Exclude illustrator files
*/img/*.ai
Expand Down
307 changes: 307 additions & 0 deletions clusters/data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion clusters/data/data_prep/prep_palettes.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ library(dplyr)
library(readr)

metadata <- data.table::fread("../joint_mouse/metadata_20190715.tsv", data.table = FALSE) %>%
select(Sample, Age, Species, Structure, Alias, Cell_type, Cluster, Colour, Cell_class, N_cells) %>%
select(Sample, Age, Species, Structure, Alias, Cell_type, Cluster, Colour, Cell_class, N_cells, Cluster_number) %>%
mutate(Cluster_nounderscore = gsub("_", " ", Cluster)) %>%
write_tsv("../joint_mouse/metadata_20190715_select.tsv")

Expand Down
Loading

0 comments on commit b61aa90

Please sign in to comment.