Mercurial > repos > gbcs-embl-heidelberg > je_demultiplex
changeset 5:222819c87d90 draft
planemo upload for repository https://git.embl.de/grp-gbcs/Je/tree/master/src/galaxy commit 0eefd837333dae6fbecaf4f55b053268d844eff6
author | gbcs-embl-heidelberg |
---|---|
date | Wed, 02 Aug 2017 10:59:28 -0400 |
parents | 6da7b7886cbf |
children | dacd089d81ae |
files | je je-demultiplex.xml je_1.2_bundle.jar macros.xml |
diffstat | 4 files changed, 22 insertions(+), 30 deletions(-) [+] |
line wrap: on
line diff
--- a/je Tue Aug 01 03:42:43 2017 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -#!/bin/sh -# Wrapper around je_1.1_bundle.jar - -# where are we stored ? -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -# echo $DIR -# path to jar file to execute, this jar is supposed to be in the same dir as this script -JAR_FILE=$DIR"/je_1.2_bundle.jar" - -# set default _JAVA_OPTIONS -_JAVA_OPTIONS=${_JAVA_OPTIONS:-'-Xmx4G -Xms256m'} -export _JAVA_OPTIONS - -# uncomment to change logging level using your own log4j.xml found in $DIR file -# OPTS="-Dlog4j.configuration=file:$DIR/log4j.xml" - -java $OPTS -jar $JAR_FILE "$@" -exit $?
--- a/je-demultiplex.xml Tue Aug 01 03:42:43 2017 -0400 +++ b/je-demultiplex.xml Wed Aug 02 10:59:28 2017 -0400 @@ -3,11 +3,12 @@ <macros> <import>macros.xml</import> </macros> + <expand macro="requirements" /> <stdio> <exit_code range="1:" level="fatal" description="Tool exception" /> </stdio> - <version_command>echo '1.0'</version_command> - <command interpreter="bash"> + <expand macro="version_command" /> + <command> <![CDATA[ je demultiplex @@ -91,8 +92,7 @@ </test> </tests> - - <help> + <help> <![CDATA[ **What it does** @@ -434,6 +434,6 @@ Default value: null. ]]> - </help> - + </help> + <expand macro="citations"/> </tool>
--- a/macros.xml Tue Aug 01 03:42:43 2017 -0400 +++ b/macros.xml Wed Aug 02 10:59:28 2017 -0400 @@ -1,6 +1,14 @@ <macros> <token name="@VERSION_STRING@">1.2</token> + <xml name="requirements"> + <requirements> + <requirement type="package" version="1.2">je-suite</requirement> + </requirements> + </xml> + <xml name="version_command"> + <version_command>je version 2>&1 | tail -n 1</version_command> + </xml> <token name="@single_or_paired_cmd@"> #if str( $library.type ) == "single": @@ -278,7 +286,7 @@ </token> <xml name="demultiplexer_common_output_options"> <param name="KEEP_UNASSIGNED_READ" type="boolean" label="Keep unassigned reads (KEEP_UNASSIGNED_READ)" - truealue="true" + truevalue="true" falsevalue="false" checked="true" /> @@ -317,11 +325,9 @@ help="Set to empty or null for no replacement." value=":"/> - <param name="GZ" type="boolean" hidden="true" label="Compress output (GZ)" + <param name="GZ" type="hidden" label="Compress output (GZ)" help="will result in fastq.gz files." - truevalue="true" - falsevalue="false" - checked="false"/> + value="false"/> </xml> <token name="@demultiplexer_common_outputs_cmd@"> @@ -336,5 +342,9 @@ <filter>(adv_options['DIAG'] == 'true')</filter> </data> </xml> - + <xml name="citations"> + <citations> + <citation type="doi">10.1186/s12859-016-1284-2</citation> + </citations> + </xml> </macros>