https://github.com/alleninstitute/scrattch.vis
scRNA-seq data visualization from scrattch
Science Score: 36.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
1 of 3 committers (33.3%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.2%) to scientific vocabulary
Keywords
Repository
scRNA-seq data visualization from scrattch
Basic Info
- Host: GitHub
- Owner: AllenInstitute
- License: other
- Language: R
- Default Branch: master
- Size: 104 MB
Statistics
- Stars: 27
- Watchers: 12
- Forks: 2
- Open Issues: 7
- Releases: 2
Topics
Metadata Files
README.md
scrattch.vis
Single-cell RNA-seq visualization tools.
This package is under heavy development and optimization.

Installation
All of the dependencies for scrattch.vis are available from CRAN. You can install scrattch.vis from Github using:
install.packages("devtools")
devtools::install_github("AllenInstitute/scrattch.vis")
Plot Types
Once installed, scrattch.vis provides a variety of functions for visualizing scRNA-seq data based on sample annotations. Each of these returns a ggplot2 plot object:
Load packages and data: ``` library(tasic2016data) library(scrattch.vis) options(stringsAsFactors = F)
anno <- tasic2016anno anno <- anno[anno$primarytypeid > 0,] data <- tasic2016rpkm datadf <- cbind(samplename = colnames(data), as.data.frame(t(data[c("Pvalb","Sst","Rorb"),]))) ```
Sample-centric plots:
samplebarplot()
sample_bar_plot(data_df,
anno,
genes = c("Pvalb","Sst","Rorb"),
grouping = "primary_type",
group_order = c(1,6,2,9,4),
log_scale = FALSE,
font_size = 5,
label_type = "angle")
sampleheatmapplot()
sample_heatmap_plot(data_df,
anno,
genes = c("Pvalb","Sst","Rorb"),
grouping = "primary_type",
log_scale = TRUE,
font_size = 5)
samplefireplot()
sample_fire_plot(data_df,
anno,
genes = c("Pvalb","Sst","Rorb"),
grouping = "primary_type",
log_scale = TRUE,
top_value = "lowest",
font_size = 5)

Group-centric plots:
groupviolinplot()
group_violin_plot(data_df,
anno,
genes = c("Pvalb","Sst","Rorb"),
grouping = "primary_type",
log_scale = FALSE,
font_size = 5,
rotate_counts = TRUE)
groupquasirandomplot()
group_quasirandom_plot(data_df,
anno,
genes = c("Pvalb","Sst","Rorb"),
grouping = "primary_type",
log_scale = FALSE,
font_size = 5,
rotate_counts = TRUE)
groupdotplot()
group_dot_plot(data_df,
anno,
genes = c("Pvalb","Sst","Rorb"),
grouping = "primary_type",
log_scale = TRUE,
font_size = 5,
max_size = 5,
rotate_counts = TRUE)
groupboxplot()
group_box_plot(data_df,
anno,
genes = c("Pvalb","Sst","Rorb"),
grouping = "primary_type",
log_scale = FALSE,
font_size = 5,
rotate_counts = TRUE)
groupheatmapplot()
group_heatmap_plot(data_df,
anno,
genes = c("Pvalb","Sst","Rorb"),
grouping = "primary_type",
stat = "tmean",
log_scale = TRUE,
font_size = 5,
rotate_counts = TRUE)
The scrattch suite
scrattch.vis is one component of the scrattch suite of packages for Single Cell RNA-seq Analysis for Transcriptomic Type CHaracterization from the Allen Institute.
License
The license for this package is available on Github at: https://github.com/AllenInstitute/scrattch.vis/blob/master/LICENSE
Level of Support
We are planning on occasional updating this tool with no fixed schedule. Community involvement is encouraged through both issues and pull requests.
Contribution Agreement
If you contribute code to this repository through pull requests or other mechanisms, you are subject to the Allen Institute Contribution Agreement, which is available in full at: https://github.com/AllenInstitute/scrattch.vis/blob/master/CONTRIBUTION
Owner
- Name: Allen Institute
- Login: AllenInstitute
- Kind: organization
- Location: Seattle, WA
- Website: https://alleninstitute.org
- Repositories: 184
- Profile: https://github.com/AllenInstitute
Please visit http://alleninstitute.github.io/ for more information.
GitHub Events
Total
- Release event: 1
- Watch event: 2
- Push event: 1
- Create event: 1
Last Year
- Release event: 1
- Watch event: 2
- Push event: 1
- Create event: 1
Committers
Last synced: 10 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Lucas Gray | s****t@g****m | 234 |
| Adriana | a****s@a****g | 30 |
| cvanvelt | c****n@g****m | 2 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 9 months ago
All Time
- Total issues: 21
- Total pull requests: 47
- Average time to close issues: 5 days
- Average time to close pull requests: about 10 hours
- Total issue authors: 4
- Total pull request authors: 3
- Average comments per issue: 0.76
- Average comments per pull request: 0.04
- Merged pull requests: 45
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- hypercompetent (5)
- adrisede (4)
- jeremymiller (2)
- dpshepherd (1)
Pull Request Authors
- hypercompetent (26)
- cvanvelt (1)
- adrisede (1)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- dplyr >= 0.4.3 depends
- ggbeeswarm >= 0.6.0 depends
- ggplot2 >= 1.0.1 depends
- purrr * depends
- dendextend >= 1.2.0 imports
- grid >= 3.2.2 imports
- lazyeval >= 0.2.0 imports
- knitr * suggests
- rmarkdown * suggests
- testthat * suggests