Skip to content

Commit ad65fbe

Browse files
committed
Changed files and added a wrapper for Nextflow
1 parent d253211 commit ad65fbe

File tree

6 files changed

+26
-0
lines changed

6 files changed

+26
-0
lines changed

conf/local.conf

Whitespace-only changes.

conf/local.yaml

Whitespace-only changes.

conf/setonix.conf

Whitespace-only changes.

local.conf

Whitespace-only changes.

run.sh

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/usr/bin/env bash
2+
3+
# =========================== #
4+
# - Nextflow Wrapper Script - #
5+
# =========================== #
6+
#
7+
# Author - Yutathkarn Coles
8+
9+
#
10+
# Wrapper script written in Bash that runs Nextflow with default parameters,
11+
# including loading profile-specific configs and parameters
12+
#
13+
14+
# Load a Nextflow profile, valid options are local and setonix
15+
PROFILE="local"
16+
17+
case $PROFILE in
18+
(local)
19+
CONF="conf/local.conf"
20+
PARAMS="conf/local.yaml"
21+
;;
22+
(setonix)
23+
CONF="conf/setonix.yaml"
24+
PARAMS="conf/setonix.yaml"
25+
;;
26+
esac

setonix.conf

Whitespace-only changes.

0 commit comments

Comments
 (0)