-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.config.R
More file actions
59 lines (50 loc) · 1.8 KB
/
env.config.R
File metadata and controls
59 lines (50 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# to be sourced
# metadata
env$study.title <- "5GB1"
# sample
env$file.sample.info <- "sample_info.xls"
env$file.sample.ordering <- "sample_ordering.xls"
env$file.sample.tracks <- "sample_tracks.xls"
# gene
env$file.genes.annotations <- "5G.annotations.xls"
env$file.genes.upstream.seqs <- "5G.upstream.tab"
# data
env$file.rpkm <- "5G.rpkm.xls"
env$file.counts <- "5G.counts.xls"
env$reference.sample <- "FM23_TR3"
# settings for upstream data
env$upstream.start <- -1
env$upstream.end <- -151
# pathes
env$dir.root <- "/Users/dacb/work/5G/cluster_analysis"
env$dir.output <- "cluster_analysis.dir"
env$dir.motif.plots <- "motif_plots.dir"
env$dir.my.cluster <- "my_cluster.dir"
env$url.prefix <- "http://127.0.0.1:4202"
# clustering
env$flexclust.seed <- 8576
env$flexclust.k.values <- c(seq(10, 150, by <- 10))
env$flexclust.cores <- 8
env$flexclust.nrep <- 8
# motif prediction
env$path.to.meme <- "meme"
env$meme.base.args <- "-dna -maxsize 1000000 -evt 1e10 -minw 6 -maxw 25 -mod zoops -nostatus -text"
env$meme.nmotifs <- 4
env$file.upstream.fa <- "upstream.fa"
env$file.meme.bfile <- "5G.upstream.bfile"
# meme.jobs can be fed to gnu parallel or similar for dispatch
env$file.meme.jobs <- "meme.jobs"
env$file.meme.txt <- "meme.txt"
# environment cache pathes
env$file.env.cache <- "env.cache.RData"
env$file.env.samples.cache <- "env.samples.cache.RData"
env$file.env.genes.cache <- "env.genes.cache.RData"
env$file.env.cluster.ensemble.cache <- "env.cluster.ensemble.cache.RData"
env$file.env.meme.data.cache <- "env.meme.data.cache.RData"
env$file.env.meme.sites.cache <- "env.meme.sites.cache.RData"
# varia, for plotting, etc.
env$motif.colors <- c("#d7191c", "#fdae61", "#abd9e9", "#2c7bb6")
# database stuff
env$mysql.database <- "cluster_analysis"
env$mysql.log.table <- "log"
env$mysql.log.like.view <- "log_likes"