-
Notifications
You must be signed in to change notification settings - Fork 11
/
ngs_STATS.sh
executable file
·157 lines (130 loc) · 5.56 KB
/
ngs_STATS.sh
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#!/bin/bash
# Copyright (c) 2012,2013, Stephen Fisher and Junhyong Kim, University of
# Pennsylvania. All Rights Reserved.
#
# You may not use this file except in compliance with the Kim Lab License
# located at
#
# http://kim.bio.upenn.edu/software/LICENSE
#
# Unless required by applicable law or agreed to in writing, this
# software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
# CONDITIONS OF ANY KIND, either express or implied. See the License
# for the specific language governing permissions and limitations
# under the License.
##########################################################################################
# INPUT: $SAMPLE/blast/speciesCounts.txt, $SAMPLE/trim/stats.txt, $SAMPLE/star/Log.final.out
# OUTPUT: printing to console
##########################################################################################
##########################################################################################
# USAGE
##########################################################################################
NGS_USAGE+="Usage: `basename $0` stats OPTIONS modules sampleID -- print stats from user-specified list of modules\n"
##########################################################################################
# HELP TEXT
##########################################################################################
ngsHelp_STATS() {
echo -e "Usage:\n\t`basename $0` stats [-verbose] [-versions] modules sampleID"
echo -e "Input:\n\tmodule specific"
echo -e "Output:\n\tprinting to console"
echo -e "Options:"
echo -e "\t-verbose - print extra information to the terminal (default: off)."
echo -e "\t-simple - don't prepend each module's stats with program and pipeline version information (default: off)."
echo -e "\tmodules - comma separated, ordered list of modules to include for stats (must not include spaces).\n"
echo -e "Prints stats for user-specified list of modules. The stats will be tab delimited so they can be copy-pasted into an Excel table. This will not write to the analysis.log file."
}
##########################################################################################
# LOCAL VARIABLES WITH DEFAULT VALUES. Using the naming convention to
# make sure these variables don't collide with the other modules.
##########################################################################################
# we assume this should only print the essential data as tab-delimited key:value pairs
ngsLocal_STATS_VERBOSE="false"
ngsLocal_STATS_VERSIONS="true"
ngsLocal_STATS_MODULES=""
ngsLocal_STATS_MOD_DELIM=""
##########################################################################################
# PROCESSING COMMAND LINE ARGUMENTS
# STATS args: sampleID
##########################################################################################
ngsArgs_STATS() {
if [ $# -lt 2 ]; then printHelp "STATS"; fi
# getopts doesn't allow for optional arguments so handle them manually
while true; do
case $1 in
-verbose) ngsLocal_STATS_VERBOSE=true
shift;
;;
-simple) ngsLocal_STATS_VERSIONS=false
shift;
;;
-d) ngsLocal_STATS_MOD_DELIM="$2\t"
shift; shift;
;;
-*) printf "Illegal option: '%s'\n" "$1"
printHelp $COMMAND
exit 0
;;
*) break ;;
esac
done
# make sure we still have sufficient arguments
if [ $# -lt 2 ]; then printHelp "STATS"; fi
ngsLocal_STATS_MODULES=$1
SAMPLE=$2
}
##########################################################################################
# RUNNING COMMAND ACTION
# Print out stats
##########################################################################################
ngsCmd_STATS() {
if $ngsLocal_STATS_VERBOSE; then
# don't write to log file as this is just printing stats
echo -e "\n##################################################################"
echo -ne "# BEGIN: STATS - $ngsLocal_STATS_MODULES\n# "
echo -ne `date`
echo -ne " "
echo $SAMPLE
echo "##################################################################"
fi
# these will be tab-delimited lists that include the stats column names and values
header="Sample ID"
values="$SAMPLE"
# the bash IFS variable dictates the word delimiting which is "
# \t\n" by default. We are capturing command output that includes
# tab characters. If we don't remove the '\t' from IFS then all
# tabs in our output get converted to spaces.
local IFS=" "
# convert module names to upper case
ngsLocal_STATS_MODULES=$(echo $ngsLocal_STATS_MODULES | tr "[a-z]" "[A-Z]")
# step through each user-specified module and call the module's
# ngsStats_MODULE() function.
local sep="$ngsLocal_STATS_MOD_DELIM"
for module in ${ngsLocal_STATS_MODULES//,/ }; do
if $ngsLocal_STATS_VERBOSE; then echo "# EXTRACTING $module STATS"; fi
# if required, include the contents of module.versions in the
# stats output
if $ngsLocal_STATS_VERSIONS; then
# need module name in lowercase
local mod=$(echo $module | tr "[A-Z]" "[a-z]")
local vFile="$SAMPLE/$mod/$SAMPLE.versions"
vHeader="$(head -1 $vFile)\t"
vValues="$(tail -1 $vFile)\t"
else
vHeader=""
vValues=""
fi
header="$header\t${sep}Module\t${vHeader}$(ngsStats_$module 'header')"
values="$values\t${sep}${module}\t${vValues}$(ngsStats_$module 'values')"
done
echo -e $header
echo -e $values
if $ngsLocal_STATS_VERBOSE; then
# don't write to log file as this is just printing stats
echo -e "\n##################################################################"
echo -ne "# FINISHED: STATS\n# "
echo -ne `date`
echo -ne " "
echo $SAMPLE
echo "##################################################################"
fi
}