https://github.com/alleninstitute/peakrankr

Package to rank enhancer peaks for cloning

https://github.com/alleninstitute/peakrankr

Science Score: 57.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
    Found 3 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Academic email domains
  • Institutional organization owner
    Organization alleninstitute has institutional domain (alleninstitute.org)
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (12.9%) to scientific vocabulary
Last synced: 9 months ago · JSON representation

Repository

Package to rank enhancer peaks for cloning

Basic Info
  • Host: GitHub
  • Owner: AllenInstitute
  • License: other
  • Language: R
  • Default Branch: master
  • Homepage:
  • Size: 10 MB
Statistics
  • Stars: 1
  • Watchers: 2
  • Forks: 0
  • Open Issues: 0
  • Releases: 1
Created about 3 years ago · Last pushed 12 months ago
Metadata Files
Readme License

README.md

DOI

PeakRankR

The R Package can be used to prioritize a list of enahncers/peaks from different groups (e.g. celltypes, subclasses) for cloning and targeting the group of interest. It takes in tsv file with coordinates, group and magnitude (at bare minimum) and two column file (refer below table for sample) listing the bigwig file path and sample id as input and returns the same tsv file with peak ranks calculated per group as output

Required tools to install and run PeakRankR

```

Identiy location of bedtools using:

system("which bedtools")

If not installed please install bedtools using https://bedtools.readthedocs.io/en/latest/content/installation.html

options(bedtools.path = "/path/to/")

bedtoolsr installation

install.packages("devtools") library(devtools) devtools::install_github("PhanstielLab/bedtoolsr")

```

Installation of PeakRanR

``` devtools::install_github("AllenInstitute/PeakRankR", dependencies = T) library(PeakRankR)

```

PeakRankR Algorithm

PeakRankRscore = W(specificity)SpecificityPeak + W(sensitivity)SensitivityPeak +
W(magnitude)MagnitudePeak

where W stands for the weight of each feature. By default each weight variable is set to 1 indicating equal importance for all three features

Running PeakRankR

``` tsvfile <- read.table("testfile.tsv",header=TRUE) # input peaks file with coordinates only/and group name (cell.population) columns (example: testfile.tsv) bwtable <- read.table("bwtable.txt",header=TRUE) # path to bigwig table (example: bwtable)

If group name is given:

Rankedpeaksfile <- PeakRankeR(tsvfiledf = tsvfile, groupbycolumnname = "cell.population", backgroundgroup = unique(tsvfile$"cell.population"), bwtable = bwtable, ranksum = TRUE, weights = c(1,1,1))

```

Note:

  1. In the bwtable file, the sampleid column should match the groupbycolumn_name values

  2. All arguments to the function are mandatory

License

The license for this package is available on Github at: https://github.com/AllenInstitute/PeakRankR/blob/master/LICENSE

Level of Support

We are planning on occasionally updating this repo with no fixed schedule, but likely several times per year. Community involvement is encouraged through both issues and pull requests.

Owner

  • Name: Allen Institute
  • Login: AllenInstitute
  • Kind: organization
  • Location: Seattle, WA

Please visit http://alleninstitute.github.io/ for more information.

GitHub Events

Total
  • Create event: 2
  • Issues event: 3
  • Release event: 1
  • Watch event: 5
  • Issue comment event: 1
  • Push event: 19
Last Year
  • Create event: 2
  • Issues event: 3
  • Release event: 1
  • Watch event: 5
  • Issue comment event: 1
  • Push event: 19

Issues and Pull Requests

Last synced: about 1 year ago

All Time
  • Total issues: 0
  • Total pull requests: 4
  • Average time to close issues: N/A
  • Average time to close pull requests: about 17 hours
  • Total issue authors: 0
  • Total pull request authors: 2
  • Average comments per issue: 0
  • Average comments per pull request: 0.0
  • Merged pull requests: 4
  • 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
  • UCDNJJ (2)
Pull Request Authors
  • SarojaSomu (3)
  • UCDNJJ (1)
Top Labels
Issue Labels
Pull Request Labels

Dependencies

DESCRIPTION cran
  • BiocParallel * depends
  • bedtoolsr * depends
  • data.table * depends
  • dplyr * depends
  • tidyr * depends