annotate region_motif_intersect.r @ 0:19d2cffb8db3 draft

Initial upload
author jeremyjliu
date Wed, 06 Aug 2014 15:36:46 -0400
parents
children 00627aa25b6c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
1 # Name: region_motif_intersect.r
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
2 # Description: Takes a bed file of target regions and counts intersections
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
3 # of each motif (built in rdata database) and target regions.
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
4 # Author: Jeremy liu
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
5 # Email: jeremy.liu@yale.edu
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
6 # Date: 14/07/02
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
7 # Note: This script is meant to be invoked with the following command
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
8 # R --slave --vanilla -f ./region_motif_intersect.r --args <workingdir> <db> <inbed> <outtab>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
9 # <workingdir> is working directory of galaxy installation
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
10 # <db> types: "t" test, "p" pouya, "j" jaspar jolma, "m" mouse
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
11 # Dependencies: none
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
12
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
13 # Auxiliary function to concatenate multiple strings
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
14 concat <- function(...) {
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
15 input_list <- list(...)
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
16 return(paste(input_list, sep="", collapse=""))
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
17 }
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
18
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
19 # Set common and data directories
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
20 args <- commandArgs()
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
21 workingDir = args[7]
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
22 commonDir = concat(workingDir, "/tools/my_tools")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
23 dbCode = args[8]
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
24 if (dbCode == "t") {
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
25 motifDB = concat(commonDir, "/region_motif_db/pouya_test_motifs.bed.bgz")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
26 } else if (dbCode == "p") {
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
27 motifDB = concat(commonDir, "/region_motif_db/pouya_motifs.bed.bgz")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
28 } else if (dbCode == "j") {
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
29 motifDB = concat(commonDir, "/region_motif_db/jaspar_jolma_motifs.bed.bgz")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
30 } else if (dbCode == "m") {
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
31 motifDB = concat(commonDir, "/region_motif_db/mm9_motifs_split.bed.bgz")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
32 } else {
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
33 motifDB = concat(commonDir, "/region_motif_db/pouya_motifs.bed.bgz")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
34 }
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
35
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
36 # Set input and reference files, comment to toggle commmand line arguments
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
37 inBed = args[9]
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
38 outTab = args[10]
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
39
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
40 # Auxiliary function to read in BED file
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
41 read_bed <- function(file) {
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
42 return(read.table(file, sep="\t", stringsAsFactors=FALSE))
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
43 }
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
44
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
45 startTime = Sys.time()
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
46 cat("Running ... Started at:", format(startTime, "%a %b %d %X %Y"), "...\n")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
47
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
48 # Load dependencies
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
49 #cat("Loading dependencies...\n")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
50 suppressPackageStartupMessages(library(Rsamtools, quietly=TRUE))
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
51
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
52 # Initializing hash table (as env) with motif names and loading tabix file
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
53 #cat("Loading motif database and initializing hash table...\n")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
54 motifTable = new.env()
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
55 motifTbx <- TabixFile(motifDB)
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
56
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
57 # Loading input bed file, convert integer columns to numeric, name columns
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
58 #cat("Loading region file...\n")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
59 regionsDF = read_bed(inBed)
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
60 dfTemp = sapply(regionsDF, is.integer)
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
61 regionsDF[dfTemp] = lapply(regionsDF[dfTemp], as.numeric)
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
62 names(regionsDF)[names(regionsDF) == "V1"] = "chr"
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
63 names(regionsDF)[names(regionsDF) == "V2"] = "start"
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
64 names(regionsDF)[names(regionsDF) == "V3"] = "end"
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
65
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
66 # Filtering regions to exclude chromosomes not in motif database
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
67 #cat("Determining intersection counts...\n")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
68 motifTbxChrs = seqnamesTabix(motifTbx)
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
69 regionsDFFilter = subset(regionsDF, chr %in% motifTbxChrs)
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
70
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
71 # Loading regions into GRanges object and scanning motif tabix database
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
72 # Region end is incremented by 1 since scanTabix querying is inclusive for
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
73 # position start but exclusive for position end.
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
74 param = GRanges(regionsDFFilter$chr, IRanges(regionsDFFilter$start,
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
75 end=regionsDFFilter$end + 1))
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
76 regionsIntersects = scanTabix(motifTbx, param=param)
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
77
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
78 # Parsing result list and updating motif count hash table
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
79 #cat("Parsing result list...\n")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
80 for(regionIntersects in regionsIntersects) {
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
81 for(regionIntersect in strsplit(regionIntersects, " ")) {
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
82 intersectMotif = strsplit(regionIntersect, "\t")[[1]][4]
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
83 if(is.null(motifTable[[intersectMotif]])) {
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
84 motifTable[[intersectMotif]] = 1
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
85 } else {
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
86 motifTable[[intersectMotif]] = motifTable[[intersectMotif]] + 1
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
87 }
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
88 }
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
89 }
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
90
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
91 # Converting motif count hash table to an integer vector for output
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
92 counts = integer(length = length(ls(motifTable)))
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
93 names(counts) = ls(motifTable)
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
94 for(motifName in ls(motifTable)) {
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
95 counts[motifName] = as.integer(motifTable[[motifName]])
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
96 }
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
97
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
98 # Outputting intersection counts to tab delineated file
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
99 #cat("Outputting to file...\n")
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
100 write.table(counts, outTab, quote=FALSE, sep="\t", row.names=TRUE, col.names=FALSE)
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
101 cat("Done. Job started at:", format(startTime, "%a %b %d %X %Y."),
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
102 "Job ended at:", format(Sys.time(), "%a %b %d %X %Y."), "\n")