/MeTPeak

Primary LanguageR

MeTPeak - fixed version

Version: 1.2 (for those having problems installing original version)

Date: 1st Jul 2019

Author: Xiaodong Cui xiaodong.cui@outlook.com, Jia Meng jia.meng@hotmail.com

Maintainer: Tomislav Lokotar tloki@github

The package is developed for the finding the location of m6A sites in MeRIP-seq data

License: GPL-2

Depends: Rsamtools, GenomicFeatures (>= 1.0.0), rtracklayer, BH, RcppArmadillo, Rcpp

Debian/Ubuntu/Mint/[debian derivates] dependencies (tested on Ubuntu 18.04.2 64bit):

build-essential
libcurl4-openssl-dev
libssl-dev
libxml2-dev
libmariadbclient-dev

Installation

R package devtools is required for metpeak to be installed from GitHub.

install.packages("devtools")

Some of MeTPeak dependent packages have to be installed from BiocLite, At last, MeTPeak can be installed as:

library("devtools")
source("https://bioconductor.org/biocLite.R")
install_github("tloki/MeTPeak",build_opts = c("--no-resave-data", "--no-manual"))

Toy Example

# using the data included in the package
library(MeTPeak)

# in the real case, change the gtf to what you need
gtf = system.file('extdata','example.gtf',package='MeTPeak')

ip1 = system.file('extdata','IP1.bam',package='MeTPeak')
ip2 = system.file('extdata','IP2.bam',package='MeTPeak')
ip3 = system.file('extdata','IP3.bam',package='MeTPeak')
input1 = system.file('extdata','Input1.bam',package='MeTPeak')
input2 = system.file('extdata','Input2.bam',package='MeTPeak')
input3 = system.file('extdata','Input3.bam',package='MeTPeak')

IP_BAM = c(ip1,ip2,ip3)
INPUT_BAM = c(input1,input2,input3)

metpeak(GENE_ANNO_GTF=gtf,IP_BAM = IP_BAM,INPUT_BAM = INPUT_BAM,
        EXPERIMENT_NAME="example")