Science Score: 23.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
✓DOI references
Found 1 DOI reference(s) in README -
✓Academic publication links
Links to: ncbi.nlm.nih.gov -
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.6%) to scientific vocabulary
Repository
Finding the active genes in RNA-seq gene expression studies
Basic Info
- Host: GitHub
- Owner: ronammar
- License: gpl-3.0
- Language: R
- Default Branch: master
- Size: 217 KB
Statistics
- Stars: 9
- Watchers: 0
- Forks: 3
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
zFPKM Transformation
Summary
Perform the zFPKM transform on RNA-seq FPKM data. This algorithm is based on the publication by Hart et al., 2013 (Pubmed ID 24215113). The reference recommends using zFPKM > -3 to select expressed genes. Validated with ENCODE open/closed promoter chromatin structure epigenetic data on six of the ENCODE cell lines. It works well for gene level data using FPKM or TPM, but does not appear to calibrate well for transcript level data.
Installation
The zFPKM package is now part of Bioconductor, and can be installed by typing the following into an R console.
r
source("https://bioconductor.org/biocLite.R")
biocLite("zFPKM")
Alternatively, to install the newest version directly from the GitHub repository.
r
devtools::install_github("ronammar/zFPKM")
Example
We calculate zFPKM for existing normalized FPKM from GSE94802.
```r library(dplyr) gse94802 <- "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE94nnn/GSE94802/suppl/GSE94802MinkinaetalnormalizedFPKM.csv.gz" temp <- tempfile() download.file(gse94802, temp) fpkm <- read.csv(gzfile(temp), row.names=1) fpkm <- select(fpkm, -MGI_Symbol)
library(zFPKM) zfpkm <- zFPKM(fpkm) ```
The zFPKM function also optionally plots the Guassian fit to the FPKM data for which the z-scores are based.

To determine which genes are active across all samples, we use rowMeans() and a zFPKM cutoff of -3, as suggested
by the authors.
r
activeGenes <- which(rowMeans(zfpkm) > -3)
References
Hart T, Komori HK, LaMere S, Podshivalova K, Salomon DR. Finding the active genes in deep RNA-seq gene expression studies. BMC Genomics. 2013 Nov 11;14:778. doi: 10.1186/1471-2164-14-778.
Owner
- Name: Ron Ammar
- Login: ronammar
- Kind: user
- Location: Princeton, NJ
- Website: http://about.me/ronammar
- Repositories: 28
- Profile: https://github.com/ronammar
GitHub Events
Total
Last Year
Committers
Last synced: over 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| ammarr | R****r@b****m | 39 |
| ammarr | r****r@b****m | 9 |
| Ron Ammar | r****r | 7 |
| John thompson | j****n@b****m | 2 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 11 months ago
All Time
- Total issues: 2
- Total pull requests: 1
- Average time to close issues: 7 months
- Average time to close pull requests: about 4 hours
- Total issue authors: 2
- Total pull request authors: 1
- Average comments per issue: 1.5
- Average comments per pull request: 1.0
- Merged pull requests: 1
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 1
- Average time to close issues: N/A
- Average time to close pull requests: about 4 hours
- Issue authors: 0
- Pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 1.0
- Merged pull requests: 1
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- ronammar (1)
- LotharukpongJS (1)
Pull Request Authors
- LotharukpongJS (2)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- bioconductor 21,913 total
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 5
- Total maintainers: 1
bioconductor.org: zFPKM
A suite of functions to facilitate zFPKM transformations
- Homepage: https://github.com/ronammar/zFPKM/
- Documentation: https://bioconductor.org/packages/release/bioc/vignettes/zFPKM/inst/doc/zFPKM.pdf
- License: GPL-3 | file LICENSE
-
Latest release: 1.30.0
published about 1 year ago
Rankings
Maintainers (1)
Dependencies
- R >= 3.4.0 depends
- SummarizedExperiment * imports
- checkmate * imports
- dplyr * imports
- ggplot2 * imports
- tidyr * imports
- GEOquery * suggests
- edgeR * suggests
- knitr * suggests
- limma * suggests
- printr * suggests
- rmarkdown * suggests
- stringr * suggests