annotate region_motif_intersect.r @ 0:5c044273554d draft

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