Skip to content

Commit 8fc80e3

Browse files
Added Shebang
Signed-off-by: Lehmann_Fabian <fabian.lehmann@informatik.hu-berlin.de>
1 parent 787a85f commit 8fc80e3

File tree

12 files changed

+12
-2
lines changed

12 files changed

+12
-2
lines changed

execution/runExperiments.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
#!/bin/bash
22
workflows=( rnaseq atacseq chipseq ampliseq mag viralrecon nanoseq sarek eager )
33
prios=( fifo rank random max min rank_max rank_min )
44
assigns=( random roundrobin fair )

inputs/ampliseq/fetchData.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
mkdir data
23
cd data
34
wget -q https://github.com/nf-core/test-datasets/raw/ampliseq/testdata/1a_S103_L001_R1_001.fastq.gz

inputs/atacseq/fetchData.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
mkdir data
23
cd data
34
wget -q https://raw.githubusercontent.com/nf-core/test-datasets/atacseq/testdata/SRR1822153_1.fastq.gz

inputs/chipseq/fetchData.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
mkdir data
23
cd data
34
wget -q https://raw.githubusercontent.com/nf-core/test-datasets/atacseq/testdata/SRR1822153_1.fastq.gz

inputs/eager/fetchData.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
mkdir data
23
cd data
34
wget -q https://github.com/nf-core/test-datasets/raw/eager/testdata/Mammoth/fastq/JK2782_TGGCCGATCAACGA_L007_R1_001.fastq.gz.tengrand.fq.gz

inputs/mag/fetchData.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
mkdir data
23
cd data
34
wget -q https://github.com/nf-core/test-datasets/raw/mag/test_data/test_minigut_R1.fastq.gz

inputs/nanoseq/fetchData.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
mkdir data
23
cd data
34
cd ..

inputs/rnaseq/fetchData.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
mkdir data
23
cd data
34
wget -q "https://github.com/nf-core/test-datasets/raw/rnaseq/testdata/GSE110004/SRR6357070_1.fastq.gz"

inputs/sarek/fetchData.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
mkdir data
23
cd data
34
wget -q https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/homo_sapiens/illumina/fastq/test_1.fastq.gz

inputs/viralrecon/fetchData.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
mkdir data
23
cd data
34
wget -q https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/illumina/amplicon/sample1_R1.fastq.gz

setup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
#!/bin/bash
12
namespace="cws"
23

3-
44
kubectl create namespace $namespace
55
kubectl apply -f setup/pvc.yaml --namespace $namespace
66
kubectl apply -f setup/management.yaml --namespace $namespace

setup/commands.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
apt update > /dev/null
23
apt install -y git wget unzip > /dev/nulldata
34
mkdir /input/pipelines

0 commit comments

Comments
 (0)