derfinder

Annotation-agnostic differential expression analysis of RNA-seq data via expressed regions-level or single base-level approaches

https://github.com/lcolladotor/derfinder

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
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    2 of 17 committers (11.8%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (15.3%) to scientific vocabulary

Keywords

annotation-agnostic bioconductor derfinder r rnaseq rstats

Keywords from Contributors

bioconductor-package genomics gene deseq2 edger bioinformatics proteomics rmarkdown regionreport ncbi-geo
Last synced: 6 months ago · JSON representation

Repository

Annotation-agnostic differential expression analysis of RNA-seq data via expressed regions-level or single base-level approaches

Basic Info
Statistics
  • Stars: 44
  • Watchers: 23
  • Forks: 15
  • Open Issues: 3
  • Releases: 0
Topics
annotation-agnostic bioconductor derfinder r rnaseq rstats
Created over 12 years ago · Last pushed about 1 year ago
Metadata Files
Readme Contributing Code of conduct Support

README.Rmd

---
output: github_document
---



```{r, include = FALSE}
knitr::opts_chunk$set(
    collapse = TRUE,
    comment = "#>",
    fig.path = "man/figures/README-",
    out.width = "100%"
)
```

# derfinder


[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![Bioc release status](http://www.bioconductor.org/shields/build/release/bioc/derfinder.svg)](https://bioconductor.org/checkResults/release/bioc-LATEST/derfinder)
[![Bioc devel status](http://www.bioconductor.org/shields/build/devel/bioc/derfinder.svg)](https://bioconductor.org/checkResults/devel/bioc-LATEST/derfinder)
[![Bioc downloads rank](https://bioconductor.org/shields/downloads/release/derfinder.svg)](http://bioconductor.org/packages/stats/bioc/derfinder/)
[![Bioc support](https://bioconductor.org/shields/posts/derfinder.svg)](https://support.bioconductor.org/tag/derfinder)
[![Bioc history](https://bioconductor.org/shields/years-in-bioc/derfinder.svg)](https://bioconductor.org/packages/release/bioc/html/derfinder.html#since)
[![Bioc last commit](https://bioconductor.org/shields/lastcommit/devel/bioc/derfinder.svg)](http://bioconductor.org/checkResults/devel/bioc-LATEST/derfinder/)
[![Bioc dependencies](https://bioconductor.org/shields/dependencies/release/derfinder.svg)](https://bioconductor.org/packages/release/bioc/html/derfinder.html#since)
[![Codecov test coverage](https://codecov.io/gh/lcolladotor/derfinder/branch/devel/graph/badge.svg)](https://codecov.io/gh/lcolladotor/derfinder?branch=devel)
[![R build status](https://github.com/lcolladotor/derfinder/actions/workflows/check-bioc.yml/badge.svg)](https://github.com/lcolladotor/derfinder/actions/workflows/check-bioc.yml)
[![GitHub issues](https://img.shields.io/github/issues/lcolladotor/derfinder)](https://github.com/lcolladotor/derfinder/issues)
[![GitHub pulls](https://img.shields.io/github/issues-pr/lcolladotor/derfinder)](https://github.com/lcolladotor/derfinder/pulls)


Annotation-agnostic differential expression analysis of RNA-seq data at base-pair resolution via the DER Finder approach. This package contains two different implementations of this approach. The first one is the single base-level F-statistics implementation and the second one is via identifying expressed regions. For more information about `derfinder` check the vignettes [here](http://www.bioconductor.org/packages/derfinder).

## Documentation

For more information about `derfinder` check the vignettes [through Bioconductor](http://bioconductor.org/packages/derfinder) or at the [documentation website](http://lcolladotor.github.io/derfinder).

## Further documentation

You can generate HTML reports from the results using __regionReport__ 
available [here](https://github.com/lcolladotor/regionReport).

## Installation instructions

Get the latest stable `R` release from [CRAN](http://cran.r-project.org/). Then install `derfinder` from [Bioconductor](http://bioconductor.org/) using the following code:

```{r 'install', eval = FALSE}
if (!requireNamespace("BiocManager", quietly = TRUE)) {
    install.packages("BiocManager")
}

BiocManager::install("derfinder")
```

## Citation

Below is the citation output from using `citation('derfinder')` in R. Please 
run this yourself to check for any updates on how to cite __derfinder__.

```{r 'citation', eval = requireNamespace('derfinder')}
print(citation("derfinder"), bibtex = TRUE)
```

Please note that the `derfinder` was only made possible thanks to many other R and bioinformatics software authors, which are cited either in the vignettes and/or the paper(s) describing this package.

## DER Finder versions

* The original implementation of the DER Finder approach as published in Frazee et al, Biostatistics 2014 is available via GitHub at [derfinder](https://github.com/leekgroup/derfinder).
* The version implementing the single base-level approach via calculating F-stastics as described in the pre-print Collado-Torres et al, Nucleic Acids Research 2017 is available via Bioconductor at [derfinder](http://bioconductor.org/packages/derfinder). The same package has the functions required for the expressed regions-level approach.

## Code of Conduct
  
Please note that the derfinder project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.

## Development tools

* Continuous code testing is possible thanks to [GitHub actions](https://www.tidyverse.org/blog/2020/04/usethis-1-6-0/)  through `r BiocStyle::CRANpkg('usethis')`, `r BiocStyle::CRANpkg('remotes')`, `r BiocStyle::Githubpkg('r-hub/sysreqs')` and `r BiocStyle::CRANpkg('rcmdcheck')` customized to use [Bioconductor's docker containers](https://www.bioconductor.org/help/docker/) and `r BiocStyle::Biocpkg('BiocCheck')`.
* Code coverage assessment is possible thanks to [codecov](https://codecov.io/gh) and `r BiocStyle::CRANpkg('covr')`.
* The [documentation website](http://lcolladotor.github.io/derfinder) is automatically updated thanks to `r BiocStyle::CRANpkg('pkgdown')`.
* The code is styled automatically thanks to `r BiocStyle::CRANpkg('styler')`.
* The documentation is formatted thanks to `r BiocStyle::CRANpkg('devtools')` and `r BiocStyle::CRANpkg('roxygen2')`.

For more details, check the `dev` directory.

This package was developed using `r BiocStyle::Biocpkg('biocthis')`.

Owner

  • Name: Leonardo Collado-Torres
  • Login: lcolladotor
  • Kind: user
  • Location: Baltimore, USA
  • Company: @LieberInstitute

Find more information about myself at my website where I post my recent publications, talks, blog posts and other updates.

GitHub Events

Total
  • Watch event: 2
  • Push event: 5
Last Year
  • Watch event: 2
  • Push event: 5

Committers

Last synced: 11 months ago

All Time
  • Total Commits: 895
  • Total Committers: 17
  • Avg Commits per committer: 52.647
  • Development Distribution Score (DDS): 0.104
Past Year
  • Commits: 9
  • Committers: 2
  • Avg Commits per committer: 4.5
  • Development Distribution Score (DDS): 0.444
Top Committers
Name Email Commits
lcolladotor l****o@j****u 802
Nitesh Turaga n****a@g****m 14
Herve Pages h****s@f****g 12
Dan Tenenbaum d****a@f****g 10
J Wokaty j****y@s****u 10
hpages@fhcrc.org h****s@f****g@b****8 9
Andrew Jaffe a****e@l****g 8
Hervé Pagès h****s@f****g 8
Bioconductor Git-SVN Bridge b****c@b****g 8
d.tenenbaum d****m@b****8 4
vobencha v****a@g****m 2
Mike Love m****e@g****m 2
vobencha v****n@r****g 2
Tim Triche, Jr t****e@g****m 1
c1au6io_hh 4****0 1
Marc Carlson m****n@f****g 1
jtleek j****k@g****m 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 32
  • Total pull requests: 14
  • Average time to close issues: 3 months
  • Average time to close pull requests: 6 days
  • Total issue authors: 13
  • Total pull request authors: 6
  • Average comments per issue: 1.59
  • Average comments per pull request: 0.79
  • Merged pull requests: 13
  • 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
  • lcolladotor (13)
  • andrewejaffe (5)
  • mikelove (2)
  • alyssafrazee (2)
  • fruce-ki (2)
  • LiNk-NY (1)
  • fomightez (1)
  • Dalhte (1)
  • rosshandler (1)
  • brianhigh (1)
  • Prakrithi-P (1)
  • MonicaVara (1)
  • PietaSchofield (1)
Pull Request Authors
  • lcolladotor (8)
  • ttriche (2)
  • c1au6i0 (1)
  • jtleek (1)
  • mikelove (1)
  • hpages (1)
Top Labels
Issue Labels
enhancement (1)
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • bioconductor 83,673 total
  • Total dependent packages: 6
  • Total dependent repositories: 0
  • Total versions: 5
  • Total maintainers: 1
bioconductor.org: derfinder

Annotation-agnostic differential expression analysis of RNA-seq data at base-pair resolution via the DER Finder approach

  • Versions: 5
  • Dependent Packages: 6
  • Dependent Repositories: 0
  • Downloads: 83,673 Total
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 4.5%
Downloads: 13.6%
Maintainers (1)
Last synced: 6 months ago