Build branch main with version main (1e1ffb3)
Build pipeline: vsh-ci-dev-jsbwk
Source commit: 1e1ffb315f
Source message: Merge pull request #17 from viash-hub/add_biobox_modules
- Migrate a number of components to biobox
- Fix tests
- Reduce size of test resources
- Prepare for Viash Hub
This commit is contained in:
293
target/executable/workflows/merge_quant_results/.config.vsh.yaml
Normal file
293
target/executable/workflows/merge_quant_results/.config.vsh.yaml
Normal file
@@ -0,0 +1,293 @@
|
||||
name: "merge_quant_results"
|
||||
namespace: "workflows"
|
||||
version: "main"
|
||||
argument_groups:
|
||||
- name: "Input"
|
||||
arguments:
|
||||
- type: "file"
|
||||
name: "--salmon_quant_results"
|
||||
info: null
|
||||
must_exist: true
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "input"
|
||||
multiple: true
|
||||
multiple_sep: ","
|
||||
- type: "file"
|
||||
name: "--kallisto_quant_results"
|
||||
info: null
|
||||
must_exist: true
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "input"
|
||||
multiple: true
|
||||
multiple_sep: ","
|
||||
- type: "file"
|
||||
name: "--gtf"
|
||||
info: null
|
||||
must_exist: true
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "input"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- type: "string"
|
||||
name: "--gtf_extra_attributes"
|
||||
info: null
|
||||
default:
|
||||
- "gene_name"
|
||||
required: false
|
||||
direction: "input"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- type: "string"
|
||||
name: "--gtf_group_features"
|
||||
info: null
|
||||
default:
|
||||
- "gene_id"
|
||||
required: false
|
||||
direction: "input"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- type: "string"
|
||||
name: "--quant_type"
|
||||
description: "Quantification method used."
|
||||
info: null
|
||||
default:
|
||||
- "salmon"
|
||||
required: false
|
||||
choices:
|
||||
- "salmon"
|
||||
- "kallisto"
|
||||
direction: "input"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- type: "file"
|
||||
name: "--versions"
|
||||
info: null
|
||||
must_exist: false
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "input"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- name: "Output"
|
||||
arguments:
|
||||
- type: "file"
|
||||
name: "--tpm_gene"
|
||||
info: null
|
||||
example:
|
||||
- "gene_tpm.tsv"
|
||||
must_exist: true
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "output"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- type: "file"
|
||||
name: "--counts_gene"
|
||||
info: null
|
||||
example:
|
||||
- "gene_counts.tsv"
|
||||
must_exist: true
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "output"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- type: "file"
|
||||
name: "--counts_gene_length_scaled"
|
||||
info: null
|
||||
example:
|
||||
- "gene_counts_length_scaled.tsv"
|
||||
must_exist: true
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "output"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- type: "file"
|
||||
name: "--counts_gene_scaled"
|
||||
info: null
|
||||
example:
|
||||
- "gene_counts_scaled.tsv"
|
||||
must_exist: true
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "output"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- type: "file"
|
||||
name: "--tpm_transcript"
|
||||
info: null
|
||||
example:
|
||||
- "transcript_tpm.tsv"
|
||||
must_exist: true
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "output"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- type: "file"
|
||||
name: "--lengths_gene"
|
||||
info: null
|
||||
example:
|
||||
- "gene_length.tsv"
|
||||
must_exist: true
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "output"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- type: "file"
|
||||
name: "--counts_transcript"
|
||||
info: null
|
||||
example:
|
||||
- "transcript_counts.tsv"
|
||||
must_exist: true
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "output"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- type: "file"
|
||||
name: "--lengths_transcript"
|
||||
info: null
|
||||
example:
|
||||
- "transcript_length.tsv"
|
||||
must_exist: true
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "output"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
- type: "file"
|
||||
name: "--quant_merged_summarizedexperiment"
|
||||
info: null
|
||||
example:
|
||||
- "quant_merged_summarizedexperiment"
|
||||
must_exist: true
|
||||
create_parent: true
|
||||
required: false
|
||||
direction: "output"
|
||||
multiple: false
|
||||
multiple_sep: ";"
|
||||
resources:
|
||||
- type: "nextflow_script"
|
||||
path: "main.nf"
|
||||
is_executable: true
|
||||
entrypoint: "run_wf"
|
||||
description: "A sub-workflow to merge the counts obtained from salmon quant across\
|
||||
\ all samples."
|
||||
info: null
|
||||
status: "enabled"
|
||||
requirements:
|
||||
commands:
|
||||
- "ps"
|
||||
dependencies:
|
||||
- name: "tx2gene"
|
||||
repository:
|
||||
type: "local"
|
||||
- name: "tximport"
|
||||
repository:
|
||||
type: "local"
|
||||
- name: "summarizedexperiment"
|
||||
repository:
|
||||
type: "local"
|
||||
runners:
|
||||
- type: "executable"
|
||||
id: "executable"
|
||||
docker_setup_strategy: "ifneedbepullelsecachedbuild"
|
||||
- type: "nextflow"
|
||||
id: "nextflow"
|
||||
directives:
|
||||
tag: "$id"
|
||||
auto:
|
||||
simplifyInput: true
|
||||
simplifyOutput: false
|
||||
transcript: false
|
||||
publish: false
|
||||
config:
|
||||
labels:
|
||||
mem1gb: "memory = 1000000000.B"
|
||||
mem2gb: "memory = 2000000000.B"
|
||||
mem5gb: "memory = 5000000000.B"
|
||||
mem10gb: "memory = 10000000000.B"
|
||||
mem20gb: "memory = 20000000000.B"
|
||||
mem50gb: "memory = 50000000000.B"
|
||||
mem100gb: "memory = 100000000000.B"
|
||||
mem200gb: "memory = 200000000000.B"
|
||||
mem500gb: "memory = 500000000000.B"
|
||||
mem1tb: "memory = 1000000000000.B"
|
||||
mem2tb: "memory = 2000000000000.B"
|
||||
mem5tb: "memory = 5000000000000.B"
|
||||
mem10tb: "memory = 10000000000000.B"
|
||||
mem20tb: "memory = 20000000000000.B"
|
||||
mem50tb: "memory = 50000000000000.B"
|
||||
mem100tb: "memory = 100000000000000.B"
|
||||
mem200tb: "memory = 200000000000000.B"
|
||||
mem500tb: "memory = 500000000000000.B"
|
||||
mem1gib: "memory = 1073741824.B"
|
||||
mem2gib: "memory = 2147483648.B"
|
||||
mem4gib: "memory = 4294967296.B"
|
||||
mem8gib: "memory = 8589934592.B"
|
||||
mem16gib: "memory = 17179869184.B"
|
||||
mem32gib: "memory = 34359738368.B"
|
||||
mem64gib: "memory = 68719476736.B"
|
||||
mem128gib: "memory = 137438953472.B"
|
||||
mem256gib: "memory = 274877906944.B"
|
||||
mem512gib: "memory = 549755813888.B"
|
||||
mem1tib: "memory = 1099511627776.B"
|
||||
mem2tib: "memory = 2199023255552.B"
|
||||
mem4tib: "memory = 4398046511104.B"
|
||||
mem8tib: "memory = 8796093022208.B"
|
||||
mem16tib: "memory = 17592186044416.B"
|
||||
mem32tib: "memory = 35184372088832.B"
|
||||
mem64tib: "memory = 70368744177664.B"
|
||||
mem128tib: "memory = 140737488355328.B"
|
||||
mem256tib: "memory = 281474976710656.B"
|
||||
mem512tib: "memory = 562949953421312.B"
|
||||
cpu1: "cpus = 1"
|
||||
cpu2: "cpus = 2"
|
||||
cpu5: "cpus = 5"
|
||||
cpu10: "cpus = 10"
|
||||
cpu20: "cpus = 20"
|
||||
cpu50: "cpus = 50"
|
||||
cpu100: "cpus = 100"
|
||||
cpu200: "cpus = 200"
|
||||
cpu500: "cpus = 500"
|
||||
cpu1000: "cpus = 1000"
|
||||
debug: false
|
||||
container: "docker"
|
||||
engines:
|
||||
- type: "native"
|
||||
id: "native"
|
||||
build_info:
|
||||
config: "src/workflows/merge_quant_results/config.vsh.yaml"
|
||||
runner: "executable"
|
||||
engine: "native"
|
||||
output: "target/executable/workflows/merge_quant_results"
|
||||
executable: "target/executable/workflows/merge_quant_results/merge_quant_results"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "1e1ffb315fefec05db2ee0c62e1c98ce4b49929c"
|
||||
git_remote: "https://github.com/viash-hub/rnaseq"
|
||||
dependencies:
|
||||
- "target/nextflow/tx2gene"
|
||||
- "target/nextflow/tximport"
|
||||
- "target/nextflow/summarizedexperiment"
|
||||
package_config:
|
||||
version: "main"
|
||||
info:
|
||||
test_resources:
|
||||
- path: "gs://viash-hub-test-data/rnaseq/v1"
|
||||
dest: "testData"
|
||||
viash_version: "0.9.0"
|
||||
source: "src"
|
||||
target: "target"
|
||||
config_mods:
|
||||
- ".requirements.commands := ['ps']\n.runners[.type == 'nextflow'].directives.tag\
|
||||
\ := '$id'\n"
|
||||
- ".engines += { type: \"native\" }"
|
||||
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
|
||||
- ".engines[.type == 'docker'].target_tag := 'main'"
|
||||
organization: "vsh"
|
||||
892
target/executable/workflows/merge_quant_results/merge_quant_results
Executable file
892
target/executable/workflows/merge_quant_results/merge_quant_results
Executable file
@@ -0,0 +1,892 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# merge_quant_results main
|
||||
#
|
||||
# This wrapper script is auto-generated by viash 0.9.0 and is thus a derivative
|
||||
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
|
||||
# Intuitive.
|
||||
#
|
||||
# The component may contain files which fall under a different license. The
|
||||
# authors of this component should specify the license in the header of such
|
||||
# files, or include a separate license file detailing the licenses of all included
|
||||
# files.
|
||||
|
||||
set -e
|
||||
|
||||
if [ -z "$VIASH_TEMP" ]; then
|
||||
VIASH_TEMP=${VIASH_TEMP:-$VIASH_TMPDIR}
|
||||
VIASH_TEMP=${VIASH_TEMP:-$VIASH_TEMPDIR}
|
||||
VIASH_TEMP=${VIASH_TEMP:-$VIASH_TMP}
|
||||
VIASH_TEMP=${VIASH_TEMP:-$TMPDIR}
|
||||
VIASH_TEMP=${VIASH_TEMP:-$TMP}
|
||||
VIASH_TEMP=${VIASH_TEMP:-$TEMPDIR}
|
||||
VIASH_TEMP=${VIASH_TEMP:-$TEMP}
|
||||
VIASH_TEMP=${VIASH_TEMP:-/tmp}
|
||||
fi
|
||||
|
||||
# define helper functions
|
||||
# ViashQuote: put quotes around non flag values
|
||||
# $1 : unquoted string
|
||||
# return : possibly quoted string
|
||||
# examples:
|
||||
# ViashQuote --foo # returns --foo
|
||||
# ViashQuote bar # returns 'bar'
|
||||
# Viashquote --foo=bar # returns --foo='bar'
|
||||
function ViashQuote {
|
||||
if [[ "$1" =~ ^-+[a-zA-Z0-9_\-]+=.+$ ]]; then
|
||||
echo "$1" | sed "s#=\(.*\)#='\1'#"
|
||||
elif [[ "$1" =~ ^-+[a-zA-Z0-9_\-]+$ ]]; then
|
||||
echo "$1"
|
||||
else
|
||||
echo "'$1'"
|
||||
fi
|
||||
}
|
||||
# ViashRemoveFlags: Remove leading flag
|
||||
# $1 : string with a possible leading flag
|
||||
# return : string without possible leading flag
|
||||
# examples:
|
||||
# ViashRemoveFlags --foo=bar # returns bar
|
||||
function ViashRemoveFlags {
|
||||
echo "$1" | sed 's/^--*[a-zA-Z0-9_\-]*=//'
|
||||
}
|
||||
# ViashSourceDir: return the path of a bash file, following symlinks
|
||||
# usage : ViashSourceDir ${BASH_SOURCE[0]}
|
||||
# $1 : Should always be set to ${BASH_SOURCE[0]}
|
||||
# returns : The absolute path of the bash file
|
||||
function ViashSourceDir {
|
||||
local source="$1"
|
||||
while [ -h "$source" ]; do
|
||||
local dir="$( cd -P "$( dirname "$source" )" >/dev/null 2>&1 && pwd )"
|
||||
source="$(readlink "$source")"
|
||||
[[ $source != /* ]] && source="$dir/$source"
|
||||
done
|
||||
cd -P "$( dirname "$source" )" >/dev/null 2>&1 && pwd
|
||||
}
|
||||
# ViashFindTargetDir: return the path of the '.build.yaml' file, following symlinks
|
||||
# usage : ViashFindTargetDir 'ScriptPath'
|
||||
# $1 : The location from where to start the upward search
|
||||
# returns : The absolute path of the '.build.yaml' file
|
||||
function ViashFindTargetDir {
|
||||
local source="$1"
|
||||
while [[ "$source" != "" && ! -e "$source/.build.yaml" ]]; do
|
||||
source=${source%/*}
|
||||
done
|
||||
echo $source
|
||||
}
|
||||
# see https://en.wikipedia.org/wiki/Syslog#Severity_level
|
||||
VIASH_LOGCODE_EMERGENCY=0
|
||||
VIASH_LOGCODE_ALERT=1
|
||||
VIASH_LOGCODE_CRITICAL=2
|
||||
VIASH_LOGCODE_ERROR=3
|
||||
VIASH_LOGCODE_WARNING=4
|
||||
VIASH_LOGCODE_NOTICE=5
|
||||
VIASH_LOGCODE_INFO=6
|
||||
VIASH_LOGCODE_DEBUG=7
|
||||
VIASH_VERBOSITY=$VIASH_LOGCODE_NOTICE
|
||||
|
||||
# ViashLog: Log events depending on the verbosity level
|
||||
# usage: ViashLog 1 alert Oh no something went wrong!
|
||||
# $1: required verbosity level
|
||||
# $2: display tag
|
||||
# $3+: messages to display
|
||||
# stdout: Your input, prepended by '[$2] '.
|
||||
function ViashLog {
|
||||
local required_level="$1"
|
||||
local display_tag="$2"
|
||||
shift 2
|
||||
if [ $VIASH_VERBOSITY -ge $required_level ]; then
|
||||
>&2 echo "[$display_tag]" "$@"
|
||||
fi
|
||||
}
|
||||
|
||||
# ViashEmergency: log events when the system is unstable
|
||||
# usage: ViashEmergency Oh no something went wrong.
|
||||
# stdout: Your input, prepended by '[emergency] '.
|
||||
function ViashEmergency {
|
||||
ViashLog $VIASH_LOGCODE_EMERGENCY emergency "$@"
|
||||
}
|
||||
|
||||
# ViashAlert: log events when actions must be taken immediately (e.g. corrupted system database)
|
||||
# usage: ViashAlert Oh no something went wrong.
|
||||
# stdout: Your input, prepended by '[alert] '.
|
||||
function ViashAlert {
|
||||
ViashLog $VIASH_LOGCODE_ALERT alert "$@"
|
||||
}
|
||||
|
||||
# ViashCritical: log events when a critical condition occurs
|
||||
# usage: ViashCritical Oh no something went wrong.
|
||||
# stdout: Your input, prepended by '[critical] '.
|
||||
function ViashCritical {
|
||||
ViashLog $VIASH_LOGCODE_CRITICAL critical "$@"
|
||||
}
|
||||
|
||||
# ViashError: log events when an error condition occurs
|
||||
# usage: ViashError Oh no something went wrong.
|
||||
# stdout: Your input, prepended by '[error] '.
|
||||
function ViashError {
|
||||
ViashLog $VIASH_LOGCODE_ERROR error "$@"
|
||||
}
|
||||
|
||||
# ViashWarning: log potentially abnormal events
|
||||
# usage: ViashWarning Something may have gone wrong.
|
||||
# stdout: Your input, prepended by '[warning] '.
|
||||
function ViashWarning {
|
||||
ViashLog $VIASH_LOGCODE_WARNING warning "$@"
|
||||
}
|
||||
|
||||
# ViashNotice: log significant but normal events
|
||||
# usage: ViashNotice This just happened.
|
||||
# stdout: Your input, prepended by '[notice] '.
|
||||
function ViashNotice {
|
||||
ViashLog $VIASH_LOGCODE_NOTICE notice "$@"
|
||||
}
|
||||
|
||||
# ViashInfo: log normal events
|
||||
# usage: ViashInfo This just happened.
|
||||
# stdout: Your input, prepended by '[info] '.
|
||||
function ViashInfo {
|
||||
ViashLog $VIASH_LOGCODE_INFO info "$@"
|
||||
}
|
||||
|
||||
# ViashDebug: log all events, for debugging purposes
|
||||
# usage: ViashDebug This just happened.
|
||||
# stdout: Your input, prepended by '[debug] '.
|
||||
function ViashDebug {
|
||||
ViashLog $VIASH_LOGCODE_DEBUG debug "$@"
|
||||
}
|
||||
|
||||
# find source folder of this component
|
||||
VIASH_META_RESOURCES_DIR=`ViashSourceDir ${BASH_SOURCE[0]}`
|
||||
|
||||
# find the root of the built components & dependencies
|
||||
VIASH_TARGET_DIR=`ViashFindTargetDir $VIASH_META_RESOURCES_DIR`
|
||||
|
||||
# define meta fields
|
||||
VIASH_META_NAME="merge_quant_results"
|
||||
VIASH_META_FUNCTIONALITY_NAME="merge_quant_results"
|
||||
VIASH_META_EXECUTABLE="$VIASH_META_RESOURCES_DIR/$VIASH_META_NAME"
|
||||
VIASH_META_CONFIG="$VIASH_META_RESOURCES_DIR/.config.vsh.yaml"
|
||||
VIASH_META_TEMP_DIR="$VIASH_TEMP"
|
||||
|
||||
|
||||
# ViashHelp: Display helpful explanation about this executable
|
||||
function ViashHelp {
|
||||
echo "merge_quant_results main"
|
||||
echo ""
|
||||
echo "A sub-workflow to merge the counts obtained from salmon quant across all"
|
||||
echo "samples."
|
||||
echo ""
|
||||
echo "Input:"
|
||||
echo " --salmon_quant_results"
|
||||
echo " type: file, multiple values allowed, file must exist"
|
||||
echo ""
|
||||
echo " --kallisto_quant_results"
|
||||
echo " type: file, multiple values allowed, file must exist"
|
||||
echo ""
|
||||
echo " --gtf"
|
||||
echo " type: file, file must exist"
|
||||
echo ""
|
||||
echo " --gtf_extra_attributes"
|
||||
echo " type: string"
|
||||
echo " default: gene_name"
|
||||
echo ""
|
||||
echo " --gtf_group_features"
|
||||
echo " type: string"
|
||||
echo " default: gene_id"
|
||||
echo ""
|
||||
echo " --quant_type"
|
||||
echo " type: string"
|
||||
echo " default: salmon"
|
||||
echo " choices: [ salmon, kallisto ]"
|
||||
echo " Quantification method used."
|
||||
echo ""
|
||||
echo " --versions"
|
||||
echo " type: file"
|
||||
echo ""
|
||||
echo "Output:"
|
||||
echo " --tpm_gene"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " example: gene_tpm.tsv"
|
||||
echo ""
|
||||
echo " --counts_gene"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " example: gene_counts.tsv"
|
||||
echo ""
|
||||
echo " --counts_gene_length_scaled"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " example: gene_counts_length_scaled.tsv"
|
||||
echo ""
|
||||
echo " --counts_gene_scaled"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " example: gene_counts_scaled.tsv"
|
||||
echo ""
|
||||
echo " --tpm_transcript"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " example: transcript_tpm.tsv"
|
||||
echo ""
|
||||
echo " --lengths_gene"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " example: gene_length.tsv"
|
||||
echo ""
|
||||
echo " --counts_transcript"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " example: transcript_counts.tsv"
|
||||
echo ""
|
||||
echo " --lengths_transcript"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " example: transcript_length.tsv"
|
||||
echo ""
|
||||
echo " --quant_merged_summarizedexperiment"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " example: quant_merged_summarizedexperiment"
|
||||
}
|
||||
|
||||
# initialise variables
|
||||
VIASH_MODE='run'
|
||||
VIASH_ENGINE_ID='native'
|
||||
|
||||
# initialise array
|
||||
VIASH_POSITIONAL_ARGS=''
|
||||
|
||||
while [[ $# -gt 0 ]]; do
|
||||
case "$1" in
|
||||
-h|--help)
|
||||
ViashHelp
|
||||
exit
|
||||
;;
|
||||
---v|---verbose)
|
||||
let "VIASH_VERBOSITY=VIASH_VERBOSITY+1"
|
||||
shift 1
|
||||
;;
|
||||
---verbosity)
|
||||
VIASH_VERBOSITY="$2"
|
||||
shift 2
|
||||
;;
|
||||
---verbosity=*)
|
||||
VIASH_VERBOSITY="$(ViashRemoveFlags "$1")"
|
||||
shift 1
|
||||
;;
|
||||
--version)
|
||||
echo "merge_quant_results main"
|
||||
exit
|
||||
;;
|
||||
--salmon_quant_results)
|
||||
if [ -z "$VIASH_PAR_SALMON_QUANT_RESULTS" ]; then
|
||||
VIASH_PAR_SALMON_QUANT_RESULTS="$2"
|
||||
else
|
||||
VIASH_PAR_SALMON_QUANT_RESULTS="$VIASH_PAR_SALMON_QUANT_RESULTS,""$2"
|
||||
fi
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --salmon_quant_results. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--salmon_quant_results=*)
|
||||
if [ -z "$VIASH_PAR_SALMON_QUANT_RESULTS" ]; then
|
||||
VIASH_PAR_SALMON_QUANT_RESULTS=$(ViashRemoveFlags "$1")
|
||||
else
|
||||
VIASH_PAR_SALMON_QUANT_RESULTS="$VIASH_PAR_SALMON_QUANT_RESULTS,"$(ViashRemoveFlags "$1")
|
||||
fi
|
||||
shift 1
|
||||
;;
|
||||
--kallisto_quant_results)
|
||||
if [ -z "$VIASH_PAR_KALLISTO_QUANT_RESULTS" ]; then
|
||||
VIASH_PAR_KALLISTO_QUANT_RESULTS="$2"
|
||||
else
|
||||
VIASH_PAR_KALLISTO_QUANT_RESULTS="$VIASH_PAR_KALLISTO_QUANT_RESULTS,""$2"
|
||||
fi
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --kallisto_quant_results. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--kallisto_quant_results=*)
|
||||
if [ -z "$VIASH_PAR_KALLISTO_QUANT_RESULTS" ]; then
|
||||
VIASH_PAR_KALLISTO_QUANT_RESULTS=$(ViashRemoveFlags "$1")
|
||||
else
|
||||
VIASH_PAR_KALLISTO_QUANT_RESULTS="$VIASH_PAR_KALLISTO_QUANT_RESULTS,"$(ViashRemoveFlags "$1")
|
||||
fi
|
||||
shift 1
|
||||
;;
|
||||
--gtf)
|
||||
[ -n "$VIASH_PAR_GTF" ] && ViashError Bad arguments for option \'--gtf\': \'$VIASH_PAR_GTF\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_GTF="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --gtf. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--gtf=*)
|
||||
[ -n "$VIASH_PAR_GTF" ] && ViashError Bad arguments for option \'--gtf=*\': \'$VIASH_PAR_GTF\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_GTF=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--gtf_extra_attributes)
|
||||
[ -n "$VIASH_PAR_GTF_EXTRA_ATTRIBUTES" ] && ViashError Bad arguments for option \'--gtf_extra_attributes\': \'$VIASH_PAR_GTF_EXTRA_ATTRIBUTES\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_GTF_EXTRA_ATTRIBUTES="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --gtf_extra_attributes. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--gtf_extra_attributes=*)
|
||||
[ -n "$VIASH_PAR_GTF_EXTRA_ATTRIBUTES" ] && ViashError Bad arguments for option \'--gtf_extra_attributes=*\': \'$VIASH_PAR_GTF_EXTRA_ATTRIBUTES\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_GTF_EXTRA_ATTRIBUTES=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--gtf_group_features)
|
||||
[ -n "$VIASH_PAR_GTF_GROUP_FEATURES" ] && ViashError Bad arguments for option \'--gtf_group_features\': \'$VIASH_PAR_GTF_GROUP_FEATURES\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_GTF_GROUP_FEATURES="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --gtf_group_features. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--gtf_group_features=*)
|
||||
[ -n "$VIASH_PAR_GTF_GROUP_FEATURES" ] && ViashError Bad arguments for option \'--gtf_group_features=*\': \'$VIASH_PAR_GTF_GROUP_FEATURES\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_GTF_GROUP_FEATURES=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--quant_type)
|
||||
[ -n "$VIASH_PAR_QUANT_TYPE" ] && ViashError Bad arguments for option \'--quant_type\': \'$VIASH_PAR_QUANT_TYPE\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_QUANT_TYPE="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --quant_type. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--quant_type=*)
|
||||
[ -n "$VIASH_PAR_QUANT_TYPE" ] && ViashError Bad arguments for option \'--quant_type=*\': \'$VIASH_PAR_QUANT_TYPE\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_QUANT_TYPE=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--versions)
|
||||
[ -n "$VIASH_PAR_VERSIONS" ] && ViashError Bad arguments for option \'--versions\': \'$VIASH_PAR_VERSIONS\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_VERSIONS="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --versions. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--versions=*)
|
||||
[ -n "$VIASH_PAR_VERSIONS" ] && ViashError Bad arguments for option \'--versions=*\': \'$VIASH_PAR_VERSIONS\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_VERSIONS=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--tpm_gene)
|
||||
[ -n "$VIASH_PAR_TPM_GENE" ] && ViashError Bad arguments for option \'--tpm_gene\': \'$VIASH_PAR_TPM_GENE\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_TPM_GENE="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --tpm_gene. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--tpm_gene=*)
|
||||
[ -n "$VIASH_PAR_TPM_GENE" ] && ViashError Bad arguments for option \'--tpm_gene=*\': \'$VIASH_PAR_TPM_GENE\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_TPM_GENE=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--counts_gene)
|
||||
[ -n "$VIASH_PAR_COUNTS_GENE" ] && ViashError Bad arguments for option \'--counts_gene\': \'$VIASH_PAR_COUNTS_GENE\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_COUNTS_GENE="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --counts_gene. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--counts_gene=*)
|
||||
[ -n "$VIASH_PAR_COUNTS_GENE" ] && ViashError Bad arguments for option \'--counts_gene=*\': \'$VIASH_PAR_COUNTS_GENE\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_COUNTS_GENE=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--counts_gene_length_scaled)
|
||||
[ -n "$VIASH_PAR_COUNTS_GENE_LENGTH_SCALED" ] && ViashError Bad arguments for option \'--counts_gene_length_scaled\': \'$VIASH_PAR_COUNTS_GENE_LENGTH_SCALED\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_COUNTS_GENE_LENGTH_SCALED="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --counts_gene_length_scaled. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--counts_gene_length_scaled=*)
|
||||
[ -n "$VIASH_PAR_COUNTS_GENE_LENGTH_SCALED" ] && ViashError Bad arguments for option \'--counts_gene_length_scaled=*\': \'$VIASH_PAR_COUNTS_GENE_LENGTH_SCALED\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_COUNTS_GENE_LENGTH_SCALED=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--counts_gene_scaled)
|
||||
[ -n "$VIASH_PAR_COUNTS_GENE_SCALED" ] && ViashError Bad arguments for option \'--counts_gene_scaled\': \'$VIASH_PAR_COUNTS_GENE_SCALED\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_COUNTS_GENE_SCALED="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --counts_gene_scaled. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--counts_gene_scaled=*)
|
||||
[ -n "$VIASH_PAR_COUNTS_GENE_SCALED" ] && ViashError Bad arguments for option \'--counts_gene_scaled=*\': \'$VIASH_PAR_COUNTS_GENE_SCALED\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_COUNTS_GENE_SCALED=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--tpm_transcript)
|
||||
[ -n "$VIASH_PAR_TPM_TRANSCRIPT" ] && ViashError Bad arguments for option \'--tpm_transcript\': \'$VIASH_PAR_TPM_TRANSCRIPT\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_TPM_TRANSCRIPT="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --tpm_transcript. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--tpm_transcript=*)
|
||||
[ -n "$VIASH_PAR_TPM_TRANSCRIPT" ] && ViashError Bad arguments for option \'--tpm_transcript=*\': \'$VIASH_PAR_TPM_TRANSCRIPT\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_TPM_TRANSCRIPT=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--lengths_gene)
|
||||
[ -n "$VIASH_PAR_LENGTHS_GENE" ] && ViashError Bad arguments for option \'--lengths_gene\': \'$VIASH_PAR_LENGTHS_GENE\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_LENGTHS_GENE="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --lengths_gene. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--lengths_gene=*)
|
||||
[ -n "$VIASH_PAR_LENGTHS_GENE" ] && ViashError Bad arguments for option \'--lengths_gene=*\': \'$VIASH_PAR_LENGTHS_GENE\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_LENGTHS_GENE=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--counts_transcript)
|
||||
[ -n "$VIASH_PAR_COUNTS_TRANSCRIPT" ] && ViashError Bad arguments for option \'--counts_transcript\': \'$VIASH_PAR_COUNTS_TRANSCRIPT\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_COUNTS_TRANSCRIPT="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --counts_transcript. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--counts_transcript=*)
|
||||
[ -n "$VIASH_PAR_COUNTS_TRANSCRIPT" ] && ViashError Bad arguments for option \'--counts_transcript=*\': \'$VIASH_PAR_COUNTS_TRANSCRIPT\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_COUNTS_TRANSCRIPT=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--lengths_transcript)
|
||||
[ -n "$VIASH_PAR_LENGTHS_TRANSCRIPT" ] && ViashError Bad arguments for option \'--lengths_transcript\': \'$VIASH_PAR_LENGTHS_TRANSCRIPT\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_LENGTHS_TRANSCRIPT="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --lengths_transcript. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--lengths_transcript=*)
|
||||
[ -n "$VIASH_PAR_LENGTHS_TRANSCRIPT" ] && ViashError Bad arguments for option \'--lengths_transcript=*\': \'$VIASH_PAR_LENGTHS_TRANSCRIPT\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_LENGTHS_TRANSCRIPT=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
--quant_merged_summarizedexperiment)
|
||||
[ -n "$VIASH_PAR_QUANT_MERGED_SUMMARIZEDEXPERIMENT" ] && ViashError Bad arguments for option \'--quant_merged_summarizedexperiment\': \'$VIASH_PAR_QUANT_MERGED_SUMMARIZEDEXPERIMENT\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_QUANT_MERGED_SUMMARIZEDEXPERIMENT="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to --quant_merged_summarizedexperiment. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
--quant_merged_summarizedexperiment=*)
|
||||
[ -n "$VIASH_PAR_QUANT_MERGED_SUMMARIZEDEXPERIMENT" ] && ViashError Bad arguments for option \'--quant_merged_summarizedexperiment=*\': \'$VIASH_PAR_QUANT_MERGED_SUMMARIZEDEXPERIMENT\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_PAR_QUANT_MERGED_SUMMARIZEDEXPERIMENT=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
---engine)
|
||||
VIASH_ENGINE_ID="$2"
|
||||
shift 2
|
||||
;;
|
||||
---engine=*)
|
||||
VIASH_ENGINE_ID="$(ViashRemoveFlags "$1")"
|
||||
shift 1
|
||||
;;
|
||||
---cpus)
|
||||
[ -n "$VIASH_META_CPUS" ] && ViashError Bad arguments for option \'---cpus\': \'$VIASH_META_CPUS\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_META_CPUS="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to ---cpus. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
---cpus=*)
|
||||
[ -n "$VIASH_META_CPUS" ] && ViashError Bad arguments for option \'---cpus=*\': \'$VIASH_META_CPUS\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_META_CPUS=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
---memory)
|
||||
[ -n "$VIASH_META_MEMORY" ] && ViashError Bad arguments for option \'---memory\': \'$VIASH_META_MEMORY\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_META_MEMORY="$2"
|
||||
[ $# -lt 2 ] && ViashError Not enough arguments passed to ---memory. Use "--help" to get more information on the parameters. && exit 1
|
||||
shift 2
|
||||
;;
|
||||
---memory=*)
|
||||
[ -n "$VIASH_META_MEMORY" ] && ViashError Bad arguments for option \'---memory=*\': \'$VIASH_META_MEMORY\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
|
||||
VIASH_META_MEMORY=$(ViashRemoveFlags "$1")
|
||||
shift 1
|
||||
;;
|
||||
*) # positional arg or unknown option
|
||||
# since the positional args will be eval'd, can we always quote, instead of using ViashQuote
|
||||
VIASH_POSITIONAL_ARGS="$VIASH_POSITIONAL_ARGS '$1'"
|
||||
[[ $1 == -* ]] && ViashWarning $1 looks like a parameter but is not a defined parameter and will instead be treated as a positional argument. Use "--help" to get more information on the parameters.
|
||||
shift # past argument
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# parse positional parameters
|
||||
eval set -- $VIASH_POSITIONAL_ARGS
|
||||
|
||||
|
||||
if [ "$VIASH_ENGINE_ID" == "native" ] ; then
|
||||
VIASH_ENGINE_TYPE='native'
|
||||
else
|
||||
ViashError "Engine '$VIASH_ENGINE_ID' is not recognized. Options are: native."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# setting computational defaults
|
||||
|
||||
# helper function for parsing memory strings
|
||||
function ViashMemoryAsBytes {
|
||||
local memory=`echo "$1" | tr '[:upper:]' '[:lower:]' | tr -d '[:space:]'`
|
||||
local memory_regex='^([0-9]+)([kmgtp]i?b?|b)$'
|
||||
if [[ $memory =~ $memory_regex ]]; then
|
||||
local number=${memory/[^0-9]*/}
|
||||
local symbol=${memory/*[0-9]/}
|
||||
|
||||
case $symbol in
|
||||
b) memory_b=$number ;;
|
||||
kb|k) memory_b=$(( $number * 1000 )) ;;
|
||||
mb|m) memory_b=$(( $number * 1000 * 1000 )) ;;
|
||||
gb|g) memory_b=$(( $number * 1000 * 1000 * 1000 )) ;;
|
||||
tb|t) memory_b=$(( $number * 1000 * 1000 * 1000 * 1000 )) ;;
|
||||
pb|p) memory_b=$(( $number * 1000 * 1000 * 1000 * 1000 * 1000 )) ;;
|
||||
kib|ki) memory_b=$(( $number * 1024 )) ;;
|
||||
mib|mi) memory_b=$(( $number * 1024 * 1024 )) ;;
|
||||
gib|gi) memory_b=$(( $number * 1024 * 1024 * 1024 )) ;;
|
||||
tib|ti) memory_b=$(( $number * 1024 * 1024 * 1024 * 1024 )) ;;
|
||||
pib|pi) memory_b=$(( $number * 1024 * 1024 * 1024 * 1024 * 1024 )) ;;
|
||||
esac
|
||||
echo "$memory_b"
|
||||
fi
|
||||
}
|
||||
# compute memory in different units
|
||||
if [ ! -z ${VIASH_META_MEMORY+x} ]; then
|
||||
VIASH_META_MEMORY_B=`ViashMemoryAsBytes $VIASH_META_MEMORY`
|
||||
# do not define other variables if memory_b is an empty string
|
||||
if [ ! -z "$VIASH_META_MEMORY_B" ]; then
|
||||
VIASH_META_MEMORY_KB=$(( ($VIASH_META_MEMORY_B+999) / 1000 ))
|
||||
VIASH_META_MEMORY_MB=$(( ($VIASH_META_MEMORY_KB+999) / 1000 ))
|
||||
VIASH_META_MEMORY_GB=$(( ($VIASH_META_MEMORY_MB+999) / 1000 ))
|
||||
VIASH_META_MEMORY_TB=$(( ($VIASH_META_MEMORY_GB+999) / 1000 ))
|
||||
VIASH_META_MEMORY_PB=$(( ($VIASH_META_MEMORY_TB+999) / 1000 ))
|
||||
VIASH_META_MEMORY_KIB=$(( ($VIASH_META_MEMORY_B+1023) / 1024 ))
|
||||
VIASH_META_MEMORY_MIB=$(( ($VIASH_META_MEMORY_KIB+1023) / 1024 ))
|
||||
VIASH_META_MEMORY_GIB=$(( ($VIASH_META_MEMORY_MIB+1023) / 1024 ))
|
||||
VIASH_META_MEMORY_TIB=$(( ($VIASH_META_MEMORY_GIB+1023) / 1024 ))
|
||||
VIASH_META_MEMORY_PIB=$(( ($VIASH_META_MEMORY_TIB+1023) / 1024 ))
|
||||
else
|
||||
# unset memory if string is empty
|
||||
unset $VIASH_META_MEMORY_B
|
||||
fi
|
||||
fi
|
||||
# unset nproc if string is empty
|
||||
if [ -z "$VIASH_META_CPUS" ]; then
|
||||
unset $VIASH_META_CPUS
|
||||
fi
|
||||
|
||||
|
||||
# check whether required parameters exist
|
||||
if [ -z ${VIASH_META_NAME+x} ]; then
|
||||
ViashError 'name' is a required argument. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
if [ -z ${VIASH_META_FUNCTIONALITY_NAME+x} ]; then
|
||||
ViashError 'functionality_name' is a required argument. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
if [ -z ${VIASH_META_RESOURCES_DIR+x} ]; then
|
||||
ViashError 'resources_dir' is a required argument. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
if [ -z ${VIASH_META_EXECUTABLE+x} ]; then
|
||||
ViashError 'executable' is a required argument. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
if [ -z ${VIASH_META_CONFIG+x} ]; then
|
||||
ViashError 'config' is a required argument. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
if [ -z ${VIASH_META_TEMP_DIR+x} ]; then
|
||||
ViashError 'temp_dir' is a required argument. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# filling in defaults
|
||||
if [ -z ${VIASH_PAR_GTF_EXTRA_ATTRIBUTES+x} ]; then
|
||||
VIASH_PAR_GTF_EXTRA_ATTRIBUTES="gene_name"
|
||||
fi
|
||||
if [ -z ${VIASH_PAR_GTF_GROUP_FEATURES+x} ]; then
|
||||
VIASH_PAR_GTF_GROUP_FEATURES="gene_id"
|
||||
fi
|
||||
if [ -z ${VIASH_PAR_QUANT_TYPE+x} ]; then
|
||||
VIASH_PAR_QUANT_TYPE="salmon"
|
||||
fi
|
||||
|
||||
# check whether required files exist
|
||||
if [ ! -z "$VIASH_PAR_SALMON_QUANT_RESULTS" ]; then
|
||||
IFS=','
|
||||
set -f
|
||||
for file in $VIASH_PAR_SALMON_QUANT_RESULTS; do
|
||||
unset IFS
|
||||
if [ ! -e "$file" ]; then
|
||||
ViashError "Input file '$file' does not exist."
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
set +f
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_KALLISTO_QUANT_RESULTS" ]; then
|
||||
IFS=','
|
||||
set -f
|
||||
for file in $VIASH_PAR_KALLISTO_QUANT_RESULTS; do
|
||||
unset IFS
|
||||
if [ ! -e "$file" ]; then
|
||||
ViashError "Input file '$file' does not exist."
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
set +f
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_GTF" ] && [ ! -e "$VIASH_PAR_GTF" ]; then
|
||||
ViashError "Input file '$VIASH_PAR_GTF' does not exist."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# check whether parameters values are of the right type
|
||||
if [[ -n "$VIASH_META_CPUS" ]]; then
|
||||
if ! [[ "$VIASH_META_CPUS" =~ ^[-+]?[0-9]+$ ]]; then
|
||||
ViashError 'cpus' has to be an integer. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [[ -n "$VIASH_META_MEMORY_B" ]]; then
|
||||
if ! [[ "$VIASH_META_MEMORY_B" =~ ^[-+]?[0-9]+$ ]]; then
|
||||
ViashError 'memory_b' has to be a long. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [[ -n "$VIASH_META_MEMORY_KB" ]]; then
|
||||
if ! [[ "$VIASH_META_MEMORY_KB" =~ ^[-+]?[0-9]+$ ]]; then
|
||||
ViashError 'memory_kb' has to be a long. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [[ -n "$VIASH_META_MEMORY_MB" ]]; then
|
||||
if ! [[ "$VIASH_META_MEMORY_MB" =~ ^[-+]?[0-9]+$ ]]; then
|
||||
ViashError 'memory_mb' has to be a long. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [[ -n "$VIASH_META_MEMORY_GB" ]]; then
|
||||
if ! [[ "$VIASH_META_MEMORY_GB" =~ ^[-+]?[0-9]+$ ]]; then
|
||||
ViashError 'memory_gb' has to be a long. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [[ -n "$VIASH_META_MEMORY_TB" ]]; then
|
||||
if ! [[ "$VIASH_META_MEMORY_TB" =~ ^[-+]?[0-9]+$ ]]; then
|
||||
ViashError 'memory_tb' has to be a long. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [[ -n "$VIASH_META_MEMORY_PB" ]]; then
|
||||
if ! [[ "$VIASH_META_MEMORY_PB" =~ ^[-+]?[0-9]+$ ]]; then
|
||||
ViashError 'memory_pb' has to be a long. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [[ -n "$VIASH_META_MEMORY_KIB" ]]; then
|
||||
if ! [[ "$VIASH_META_MEMORY_KIB" =~ ^[-+]?[0-9]+$ ]]; then
|
||||
ViashError 'memory_kib' has to be a long. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [[ -n "$VIASH_META_MEMORY_MIB" ]]; then
|
||||
if ! [[ "$VIASH_META_MEMORY_MIB" =~ ^[-+]?[0-9]+$ ]]; then
|
||||
ViashError 'memory_mib' has to be a long. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [[ -n "$VIASH_META_MEMORY_GIB" ]]; then
|
||||
if ! [[ "$VIASH_META_MEMORY_GIB" =~ ^[-+]?[0-9]+$ ]]; then
|
||||
ViashError 'memory_gib' has to be a long. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [[ -n "$VIASH_META_MEMORY_TIB" ]]; then
|
||||
if ! [[ "$VIASH_META_MEMORY_TIB" =~ ^[-+]?[0-9]+$ ]]; then
|
||||
ViashError 'memory_tib' has to be a long. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [[ -n "$VIASH_META_MEMORY_PIB" ]]; then
|
||||
if ! [[ "$VIASH_META_MEMORY_PIB" =~ ^[-+]?[0-9]+$ ]]; then
|
||||
ViashError 'memory_pib' has to be a long. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
# check whether value is belongs to a set of choices
|
||||
if [ ! -z "$VIASH_PAR_QUANT_TYPE" ]; then
|
||||
VIASH_PAR_QUANT_TYPE_CHOICES=("salmon;kallisto")
|
||||
IFS=';'
|
||||
set -f
|
||||
if ! [[ ";${VIASH_PAR_QUANT_TYPE_CHOICES[*]};" =~ ";$VIASH_PAR_QUANT_TYPE;" ]]; then
|
||||
ViashError '--quant_type' specified value of \'$VIASH_PAR_QUANT_TYPE\' is not in the list of allowed values. Use "--help" to get more information on the parameters.
|
||||
exit 1
|
||||
fi
|
||||
set +f
|
||||
unset IFS
|
||||
fi
|
||||
|
||||
# create parent directories of output files, if so desired
|
||||
if [ ! -z "$VIASH_PAR_TPM_GENE" ] && [ ! -d "$(dirname "$VIASH_PAR_TPM_GENE")" ]; then
|
||||
mkdir -p "$(dirname "$VIASH_PAR_TPM_GENE")"
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_COUNTS_GENE" ] && [ ! -d "$(dirname "$VIASH_PAR_COUNTS_GENE")" ]; then
|
||||
mkdir -p "$(dirname "$VIASH_PAR_COUNTS_GENE")"
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_COUNTS_GENE_LENGTH_SCALED" ] && [ ! -d "$(dirname "$VIASH_PAR_COUNTS_GENE_LENGTH_SCALED")" ]; then
|
||||
mkdir -p "$(dirname "$VIASH_PAR_COUNTS_GENE_LENGTH_SCALED")"
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_COUNTS_GENE_SCALED" ] && [ ! -d "$(dirname "$VIASH_PAR_COUNTS_GENE_SCALED")" ]; then
|
||||
mkdir -p "$(dirname "$VIASH_PAR_COUNTS_GENE_SCALED")"
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_TPM_TRANSCRIPT" ] && [ ! -d "$(dirname "$VIASH_PAR_TPM_TRANSCRIPT")" ]; then
|
||||
mkdir -p "$(dirname "$VIASH_PAR_TPM_TRANSCRIPT")"
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_LENGTHS_GENE" ] && [ ! -d "$(dirname "$VIASH_PAR_LENGTHS_GENE")" ]; then
|
||||
mkdir -p "$(dirname "$VIASH_PAR_LENGTHS_GENE")"
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_COUNTS_TRANSCRIPT" ] && [ ! -d "$(dirname "$VIASH_PAR_COUNTS_TRANSCRIPT")" ]; then
|
||||
mkdir -p "$(dirname "$VIASH_PAR_COUNTS_TRANSCRIPT")"
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_LENGTHS_TRANSCRIPT" ] && [ ! -d "$(dirname "$VIASH_PAR_LENGTHS_TRANSCRIPT")" ]; then
|
||||
mkdir -p "$(dirname "$VIASH_PAR_LENGTHS_TRANSCRIPT")"
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_QUANT_MERGED_SUMMARIZEDEXPERIMENT" ] && [ ! -d "$(dirname "$VIASH_PAR_QUANT_MERGED_SUMMARIZEDEXPERIMENT")" ]; then
|
||||
mkdir -p "$(dirname "$VIASH_PAR_QUANT_MERGED_SUMMARIZEDEXPERIMENT")"
|
||||
fi
|
||||
|
||||
if [ "$VIASH_ENGINE_ID" == "native" ] ; then
|
||||
if [ "$VIASH_MODE" == "run" ]; then
|
||||
VIASH_CMD="bash"
|
||||
else
|
||||
ViashError "Engine '$VIASH_ENGINE_ID' does not support mode '$VIASH_MODE'."
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
# set dependency paths
|
||||
VIASH_DEP_TX2GENE="$VIASH_META_RESOURCES_DIR/../../../nextflow/tx2gene/main.nf"
|
||||
VIASH_DEP_TXIMPORT="$VIASH_META_RESOURCES_DIR/../../../nextflow/tximport/main.nf"
|
||||
VIASH_DEP_SUMMARIZEDEXPERIMENT="$VIASH_META_RESOURCES_DIR/../../../nextflow/summarizedexperiment/main.nf"
|
||||
|
||||
ViashDebug "Running command: $(echo $VIASH_CMD)"
|
||||
cat << VIASHEOF | eval $VIASH_CMD
|
||||
set -e
|
||||
tempscript=\$(mktemp "$VIASH_META_TEMP_DIR/viash-run-merge_quant_results-XXXXXX").nf
|
||||
function clean_up {
|
||||
rm "\$tempscript"
|
||||
}
|
||||
function interrupt {
|
||||
echo -e "\nCTRL-C Pressed..."
|
||||
exit 1
|
||||
}
|
||||
trap clean_up EXIT
|
||||
trap interrupt INT SIGINT
|
||||
cat > "\$tempscript" << 'VIASHMAIN'
|
||||
//// VIASH START
|
||||
// The following code has been auto-generated by Viash.
|
||||
|
||||
//// VIASH END
|
||||
workflow run_wf {
|
||||
take:
|
||||
input_ch
|
||||
|
||||
main:
|
||||
output_ch = input_ch
|
||||
|
||||
| map { id, state ->
|
||||
def quant_results = state.quant_type == 'kallisto' ? state.kallisto_quant_results : state.salmon_quant_results
|
||||
[id, state + [quant_results: quant_results]]
|
||||
}
|
||||
|
||||
| tx2gene.run (
|
||||
fromState: [
|
||||
"quant_results": "quant_results",
|
||||
"gtf_extra_attributes": "gtf_extra_attributes",
|
||||
"gtf": "gtf",
|
||||
"gtf_group_features": "gtf_group_features",
|
||||
"quant_type": "quant_type"
|
||||
],
|
||||
toState: [ "tx2gene_tsv": "tsv" ]
|
||||
)
|
||||
|
||||
| tximport.run (
|
||||
fromState: [
|
||||
"quant_results": "quant_results",
|
||||
"tx2gene_tsv": "tx2gene_tsv",
|
||||
"quant_type": "quant_type"
|
||||
],
|
||||
toState: [
|
||||
"tpm_gene": "tpm_gene",
|
||||
"counts_gene": "counts_gene",
|
||||
"counts_gene_length_scaled": "counts_gene_length_scaled",
|
||||
"counts_gene_scaled": "counts_gene_scaled",
|
||||
"tpm_transcript": "tpm_transcript",
|
||||
"counts_transcript": "counts_transcript",
|
||||
"length_gene": "length_gene",
|
||||
"length_transcript": "length_transcript"
|
||||
]
|
||||
)
|
||||
|
||||
| summarizedexperiment.run (
|
||||
fromState: [
|
||||
"tpm_gene": "tpm_gene",
|
||||
"counts_gene": "counts_gene",
|
||||
"counts_gene_length_scaled": "counts_gene_length_scaled",
|
||||
"counts_gene_scaled": "counts_gene_scaled",
|
||||
"tpm_transcript": "tpm_transcript",
|
||||
"counts_transcript": "counts_transcript",
|
||||
"tx2gene_tsv": "tx2gene_tsv"
|
||||
],
|
||||
toState: [ "quant_merged_summarizedexperiment": "output" ]
|
||||
)
|
||||
|
||||
| setState (
|
||||
[ "tpm_gene": "tpm_gene",
|
||||
"counts_gene": "counts_gene",
|
||||
"counts_gene_length_scaled": "counts_gene_length_scaled",
|
||||
"counts_gene_scaled": "counts_gene_scaled",
|
||||
"tpm_transcript": "tpm_transcript",
|
||||
"counts_transcript": "counts_transcript",
|
||||
"quant_merged_summarizedexperiment": "quant_merged_summarizedexperiment" ]
|
||||
)
|
||||
|
||||
emit:
|
||||
output_ch
|
||||
}
|
||||
VIASHMAIN
|
||||
nextflow run . -main-script "\$tempscript" &
|
||||
wait "\$!"
|
||||
|
||||
VIASHEOF
|
||||
|
||||
|
||||
# check whether required files exist
|
||||
if [ ! -z "$VIASH_PAR_TPM_GENE" ] && [ ! -e "$VIASH_PAR_TPM_GENE" ]; then
|
||||
ViashError "Output file '$VIASH_PAR_TPM_GENE' does not exist."
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_COUNTS_GENE" ] && [ ! -e "$VIASH_PAR_COUNTS_GENE" ]; then
|
||||
ViashError "Output file '$VIASH_PAR_COUNTS_GENE' does not exist."
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_COUNTS_GENE_LENGTH_SCALED" ] && [ ! -e "$VIASH_PAR_COUNTS_GENE_LENGTH_SCALED" ]; then
|
||||
ViashError "Output file '$VIASH_PAR_COUNTS_GENE_LENGTH_SCALED' does not exist."
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_COUNTS_GENE_SCALED" ] && [ ! -e "$VIASH_PAR_COUNTS_GENE_SCALED" ]; then
|
||||
ViashError "Output file '$VIASH_PAR_COUNTS_GENE_SCALED' does not exist."
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_TPM_TRANSCRIPT" ] && [ ! -e "$VIASH_PAR_TPM_TRANSCRIPT" ]; then
|
||||
ViashError "Output file '$VIASH_PAR_TPM_TRANSCRIPT' does not exist."
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_LENGTHS_GENE" ] && [ ! -e "$VIASH_PAR_LENGTHS_GENE" ]; then
|
||||
ViashError "Output file '$VIASH_PAR_LENGTHS_GENE' does not exist."
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_COUNTS_TRANSCRIPT" ] && [ ! -e "$VIASH_PAR_COUNTS_TRANSCRIPT" ]; then
|
||||
ViashError "Output file '$VIASH_PAR_COUNTS_TRANSCRIPT' does not exist."
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_LENGTHS_TRANSCRIPT" ] && [ ! -e "$VIASH_PAR_LENGTHS_TRANSCRIPT" ]; then
|
||||
ViashError "Output file '$VIASH_PAR_LENGTHS_TRANSCRIPT' does not exist."
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -z "$VIASH_PAR_QUANT_MERGED_SUMMARIZEDEXPERIMENT" ] && [ ! -e "$VIASH_PAR_QUANT_MERGED_SUMMARIZEDEXPERIMENT" ]; then
|
||||
ViashError "Output file '$VIASH_PAR_QUANT_MERGED_SUMMARIZEDEXPERIMENT' does not exist."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
exit 0
|
||||
Reference in New Issue
Block a user