forked from esherm/intSiteCaller
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcheck_stats.R
41 lines (32 loc) · 1.46 KB
/
check_stats.R
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
# This source code file is a component of the larger INSPIIRED genomic analysis software package.
# Copyright (C) 2016 Frederic Bushman
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
options(stringsAsFactors = FALSE)
cur_dir <- getwd()
args <- commandArgs(trailingOnly=TRUE)
if( length(args)>0 ) cur_dir <- args[1]
stats.file <- list.files(cur_dir, pattern="^stats.RData$", recursive=TRUE, full.names=TRUE)
tmp.statlist <- lapply(setNames(stats.file, stats.file), function(x) {
a <- load(x)
get(a)
})
stats <- plyr:::rbind.fill(tmp.statlist)
stats$sample <- as.character(stats$sample)
rownames(stats) <- NULL
sampleinfo <- read.table("sampleInfo.tsv", header=TRUE)
samplestats <- merge(stats, sampleinfo, by.x="sample", by.y="alias", all.y=TRUE)
samplestats$workdir <- cur_dir
write.table(samplestats, "", sep = "\t", row.names=FALSE, quote=FALSE)