annotate make_test_data.sh @ 0:0abe6bac47a6 draft

planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
author pjbriggs
date Wed, 24 Feb 2016 09:25:18 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
1 #!/bin/bash -e
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
2 #
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
3 # List of dependencies
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
4 TOOL_DEPENDENCIES="rnachipintegrator/0.5.0-alpha.7
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
5 xlsxwriter/0.8.4"
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
6 # Where to find them
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
7 TOOL_DEPENDENCIES_DIR=$(pwd)/test.tool_dependencies.rnachipintegrator
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
8 if [ ! -d $TOOL_DEPENDENCIES_DIR ] ; then
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
9 echo WARNING $TOOL_DEPENDENCIES_DIR not found >&2
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
10 echo Creating tool dependencies dir
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
11 mkdir -p $TOOL_DEPENDENCIES_DIR
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
12 echo Installing tool dependencies
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
13 $(dirname $0)/install_tool_deps.sh $TOOL_DEPENDENCIES_DIR
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
14 fi
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
15 # Load dependencies
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
16 for dep in $TOOL_DEPENDENCIES ; do
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
17 env_file=$TOOL_DEPENDENCIES_DIR/$dep/env.sh
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
18 if [ -e $env_file ] ; then
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
19 . $env_file
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
20 else
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
21 echo ERROR no env.sh file found for $dep >&2
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
22 exit 1
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
23 fi
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
24 done
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
25 #
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
26 # rnachipintegrator_canonical_genes
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
27 #
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
28 # Test #1
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
29 RnaChipIntegrator --name=mm9 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
30 --cutoff=50000 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
31 --number=4 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
32 --xlsx \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
33 --compact \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
34 test-data/mm9_canonical_genes.tsv test-data/mm9_summits.txt
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
35 mv mm9_gene_centric.txt test-data/mm9_summits_per_feature.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
36 mv mm9_peak_centric.txt test-data/mm9_features_per_summit.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
37 mv mm9.xlsx test-data/mm9_summits.xlsx
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
38 #
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
39 # Test #2
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
40 RnaChipIntegrator --name=mm9 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
41 --cutoff=50000 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
42 --number=4 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
43 --xlsx \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
44 --compact \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
45 test-data/mm9_canonical_genes.tsv test-data/mm9_peaks.txt
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
46 mv mm9_gene_centric.txt test-data/mm9_peaks_per_feature1.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
47 mv mm9_peak_centric.txt test-data/mm9_features_per_peak1.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
48 mv mm9.xlsx test-data/mm9_peaks1.xlsx
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
49 #
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
50 # Test #3
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
51 RnaChipIntegrator --name=mm9 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
52 --cutoff=50000 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
53 --number=4 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
54 --xlsx \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
55 --summary \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
56 --pad \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
57 test-data/mm9_canonical_genes.tsv test-data/mm9_peaks.txt
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
58 mv mm9_gene_centric.txt test-data/mm9_peaks_per_feature3.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
59 mv mm9_peak_centric.txt test-data/mm9_features_per_peak3.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
60 mv mm9_gene_centric_summary.txt test-data/mm9_peaks_per_feature3.summary
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
61 mv mm9_peak_centric_summary.txt test-data/mm9_features_per_peak3.summary
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
62 mv mm9.xlsx test-data/mm9_peaks3.xlsx
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
63 #
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
64 # rnachipintegrator_wrapper
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
65 #
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
66 # Test #1
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
67 RnaChipIntegrator --name=test \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
68 --cutoff=130000 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
69 --number=4 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
70 --promoter_region=-10000,2500 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
71 --xlsx \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
72 --compact \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
73 test-data/features.txt test-data/summits.txt
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
74 mv test_gene_centric.txt test-data/summits_per_feature.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
75 mv test_peak_centric.txt test-data/features_per_summit.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
76 mv test.xlsx test-data/summits.xlsx
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
77 #
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
78 # Test #2
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
79 RnaChipIntegrator --name=test \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
80 --cutoff=130000 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
81 --number=4 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
82 --promoter_region=-10000,2500 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
83 --xlsx \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
84 --compact \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
85 test-data/features.txt test-data/peaks.txt
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
86 mv test_gene_centric.txt test-data/peaks_per_feature1.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
87 mv test_peak_centric.txt test-data/features_per_peak1.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
88 mv test.xlsx test-data/peaks1.xlsx
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
89 #
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
90 # Test #3
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
91 RnaChipIntegrator --name=test \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
92 --cutoff=130000 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
93 --number=4 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
94 --xlsx \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
95 test-data/features.txt test-data/peaks.txt
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
96 mv test_gene_centric.txt test-data/peaks_per_feature2.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
97 mv test_peak_centric.txt test-data/features_per_peak2.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
98 mv test.xlsx test-data/peaks2.xlsx
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
99 #
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
100 # Test #4
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
101 RnaChipIntegrator --name=test \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
102 --cutoff=130000 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
103 --number=4 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
104 --only-DE \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
105 --xlsx \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
106 --compact \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
107 test-data/features.txt test-data/peaks.txt
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
108 mv test_gene_centric.txt test-data/peaks_per_feature3.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
109 mv test_peak_centric.txt test-data/features_per_peak3.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
110 mv test.xlsx test-data/peaks3.xlsx
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
111 #
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
112 # Test #5
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
113 RnaChipIntegrator --name=test \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
114 --cutoff=130000 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
115 --number=4 \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
116 --xlsx \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
117 --summary \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
118 --pad \
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
119 test-data/features.txt test-data/peaks.txt
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
120 mv test_gene_centric.txt test-data/peaks_per_feature4.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
121 mv test_peak_centric.txt test-data/features_per_peak4.out
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
122 mv test_gene_centric_summary.txt test-data/peaks_per_feature4.summary
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
123 mv test_peak_centric_summary.txt test-data/features_per_peak4.summary
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
124 mv test.xlsx test-data/peaks4.xlsx
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
125 ##
0abe6bac47a6 planemo upload for repository https://github.com/fls-bioinformatics-core/galaxy-tools/tree/master/rnachipintegrator commit 97d556dae96db5457590a3a257392b6e4093a912-dirty
pjbriggs
parents:
diff changeset
126 #