comparison package_rnachipintegrator_wrapper.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
comparison
equal deleted inserted replaced
-1:000000000000 0:0abe6bac47a6
1 #!/bin/sh
2 #
3 # Package RnaChipIntegrator files into tgz file for upload to
4 # Galaxy toolshed
5 #
6 VERSION=$(grep "@VERSION@" rnachipintegrator_macros.xml | cut -d'>' -f2 | cut -d'<' -f1)
7 TGZ=rnachipintegrator-${VERSION}.tgz
8 if [ -f $TGZ ] ; then
9 echo $TGZ: already exists, please remove >&2
10 exit 1
11 fi
12 tar cvzf $TGZ \
13 README.rst \
14 rnachipintegrator_macros.xml \
15 rnachipintegrator_wrapper.xml \
16 rnachipintegrator_canonical_genes.xml \
17 rnachipintegrator_wrapper.sh \
18 tool_dependencies.xml \
19 data_manager \
20 data_manager_conf.xml \
21 tool-data \
22 tool_data_table_conf.xml.sample \
23 test-data \
24 --exclude=*~
25 if [ -f $TGZ ] ; then
26 echo Created $TGZ
27 else
28 echo Failed to created $TGZ >&2
29 exit 1
30 fi
31 ##
32 #