Mercurial > repos > kpbioteam > chipeakanno_annopeaks
view chipeakanno_annopeaks.R @ 4:b5bc7e70b949 draft
planemo upload for repository https://github.com/kpbioteam/chipeakanno_annopeaks commit e4ccaafda5f770219ab999f48574a3bfed84c311
author | kpbioteam |
---|---|
date | Tue, 12 Jun 2018 08:46:36 -0400 |
parents | 9ec5e9e2e7b2 |
children | 17b814d78ac6 |
line wrap: on
line source
source("https://bioconductor.org/biocLite.R") biocLite("ChIPpeakAnno") biocLite("rtracklayer") require("ChIPpeakAnno", quietly = TRUE) require("EnsDb.Hsapiens.v75", quietly = TRUE) require("rtracklayer", quietly = TRUE) options(warn = -1) options("download.file.method"="wget") args <- commandArgs(trailingOnly = TRUE) input1 = args[1] input2 = args[2] input3 = as.numeric(args[3]) input4 = as.numeric(args[4]) output1 = args[5] DMRInfo <- read.table(input1) peaks <- GRanges(seqnames = DMRInfo[, 1], ranges = IRanges (start = DMRInfo[, 2], end = DMRInfo[, 3])) annoData <- toGRanges(EnsDb.Hsapiens.v75) seqlevelsStyle(peaks) <- seqlevelsStyle(annoData) anno <- annoPeaks(peaks, annoData=annoData, bindingType =c(input2), bindingRegion=c(input3, input4)) write.table(anno, file= output1, quote = FALSE, row.names = FALSE, sep = "\t")