changeset 60:33eaa535ceb4 draft

Uploaded
author cropgeeks
date Wed, 21 Feb 2018 08:47:54 -0500
parents 3ff3493f54d6
children 7448697d5b1d
files creatematrix.xml createproject.xml datatypes_conf.xml favalleleheadercreator.xml fj2hdf5.xml flapjack.py hapmap2fj.xml hdf52fj.xml jnlp.xml lib/brapi-client.jar lib/castor-core-1.4.1.jar lib/castor-xml-1.4.1.jar lib/com.fasterxml.jackson.annotations.jar lib/com.fasterxml.jackson.core.jar lib/com.fasterxml.jackson.databind.jar lib/commons-cli-1.4.jar lib/commons-lang3-3.4.jar lib/commons-logging-1.1.1.jar lib/converter-jackson-2.1.0.jar lib/flapjack.jar lib/jcommon-1.0.23.jar lib/jfreechart-1.0.19.jar lib/lib-devel/catalina-ant.jar lib/lib-devel/drmaa.jar lib/lib-devel/junit-4.4.jar lib/lib-devel/servlet-api.jar lib/lib-devel/tomcat-coyote.jar lib/lib-devel/tomcat-juli.jar lib/lib-devel/tomcat-util.jar lib/lib-servlet/com.fasterxml.jackson.csv.jar lib/lib-servlet/com.fasterxml.jackson.smile.jar lib/lib-servlet/com.fasterxml.jackson.xml.jar lib/lib-servlet/com.fasterxml.jackson.yaml.jar lib/lib-servlet/org.json.jar lib/lib-servlet/org.restlet-2.3.1.jar lib/lib-servlet/org.restlet.ext.fileupload.jar lib/lib-servlet/org.restlet.ext.jackson.jar lib/lib-servlet/org.restlet.ext.json.jar lib/lib-servlet/org.restlet.ext.servlet.jar lib/lib-servlet/org.restlet.jar lib/okhttp-3.4.2.jar lib/okio-1.11.0.jar lib/org.apache.commons.fileupload.jar lib/osxadapter.jar lib/retrofit-2.1.0.jar lib/scri-commons.jar lib/sis-jhdf5-batteries_included.jar lib/sqlite-jdbc-3.7.2.jar lib/xerces-serializer-2.11.0.jar lib/xercesImpl-2.11.0.jar lib/xml-apis.jar mabcstats.xml pedverf1stats.xml transpose.xml
diffstat 23 files changed, 71 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/favalleleheadercreator.xml	Wed Feb 21 08:47:54 2018 -0500
@@ -0,0 +1,63 @@
+<tool id="intertek_to_flapjack_fav_allele" name="Intertek -> Flapjack favourable allele header formate" version="0.0.1">
+	<description>convert an HDF5 formatted genotype file into a Flapjack formatted genotype file</description>
+	<command><![CDATA[
+		java
+		#if $adv_opts.show_advanced
+			-Xmx$adv_opts.memory
+		#end if
+		-cp $__tool_directory__/lib/intertek-parser.jar jhi.flapjack.io.cmd.IntertekParser
+		-g $genotype
+		-i $intertek
+		-o $output
+	]]></command>
+	<inputs>
+		<param format="txt" name="intertek" type="data" label="Intertek favourable allele file"
+			help="An Intertek file with favourable and unfavourable allele information for markers."/>
+		<param format="fjgenotype" name="genotype" type="data" label="Flapjack genotype file"
+			help="A Flapjack formatted genotype file with markers which match those in the intertek file so that we can
+				add the favourable and unfavourable allele information to this Flapjack genotype file."
+			optional="true"/>
+
+		<conditional name="adv_opts">
+			<param name="show_advanced" type="boolean"
+				   label="Enable advanced options"
+				   truevalue="show" falsevalue="">
+			</param>
+			<when value="show">
+				<param name="memory" type="select"
+					   label="Memory"
+					   help="How much memory to use (larger files may require more memory).">
+					<option selected="true" value="64m">64MB</option>
+					<option value="128m">128MB</option>
+					<option value="256m">256MB</option>
+				</param>
+			</when>
+		</conditional>
+	</inputs>
+
+	<outputs>
+		<data format="fjgenotype" name="output" />
+	</outputs>
+
+	<stdio>
+		<exit_code range="1:" />
+	</stdio>
+
+	<help><![CDATA[
+.. class:: infomark
+
+**What it does**
+
+Flapjack is a multi-platform application providing interactive visualizations of high-throughput genotype data,
+allowing for rapid navigation and comparisons between lines, markers and chromosomes.
+
+This tool converts a Flapjack-formatted file of genotype data into a corresponding HDF5 file.
+See Flapjack's documentation_ for more details on the various Flapjack data formats.
+
+.. _documentation: http://flapjack.hutton.ac.uk/en/latest/projects_&_data_formats.html
+	]]></help>
+
+	<citations>
+		<citation type="doi">10.1093/bioinformatics/btq580</citation>
+	</citations>
+</tool>
\ No newline at end of file
Binary file lib/brapi-client.jar has changed
Binary file lib/flapjack.jar has changed
Binary file lib/lib-devel/catalina-ant.jar has changed
Binary file lib/lib-devel/drmaa.jar has changed
Binary file lib/lib-devel/junit-4.4.jar has changed
Binary file lib/lib-devel/servlet-api.jar has changed
Binary file lib/lib-devel/tomcat-coyote.jar has changed
Binary file lib/lib-devel/tomcat-juli.jar has changed
Binary file lib/lib-devel/tomcat-util.jar has changed
Binary file lib/lib-servlet/com.fasterxml.jackson.csv.jar has changed
Binary file lib/lib-servlet/com.fasterxml.jackson.smile.jar has changed
Binary file lib/lib-servlet/com.fasterxml.jackson.xml.jar has changed
Binary file lib/lib-servlet/com.fasterxml.jackson.yaml.jar has changed
Binary file lib/lib-servlet/org.json.jar has changed
Binary file lib/lib-servlet/org.restlet-2.3.1.jar has changed
Binary file lib/lib-servlet/org.restlet.ext.fileupload.jar has changed
Binary file lib/lib-servlet/org.restlet.ext.jackson.jar has changed
Binary file lib/lib-servlet/org.restlet.ext.json.jar has changed
Binary file lib/lib-servlet/org.restlet.ext.servlet.jar has changed
Binary file lib/lib-servlet/org.restlet.jar has changed
--- a/mabcstats.xml	Fri Nov 17 06:38:55 2017 -0500
+++ b/mabcstats.xml	Wed Feb 21 08:47:54 2018 -0500
@@ -18,7 +18,7 @@
 		-c $coverage
 		-o $output
 		#if $exclude_parents
-			-e
+			-x
 		#end if
 		#if $adv_opts.show_advanced
 			$adv_opts.allChromosomes
--- a/pedverf1stats.xml	Fri Nov 17 06:38:55 2017 -0500
+++ b/pedverf1stats.xml	Wed Feb 21 08:47:54 2018 -0500
@@ -20,6 +20,9 @@
 		#if $simulate_f1.simulate_f1_selector == False
 			-e $simulate_f1.expectedF1
 		#end if
+		#if $exclude_parents
+			-x
+		#end if
 		#if $adv_opts.show_advanced
 			$adv_opts.allChromosomes
 			$adv_opts.collapseHets
@@ -65,6 +68,10 @@
 			</when>
 		</conditional>
 
+		<param name="exclude_parents" type="boolean" label="Exclude parental lines which have not been selected."
+			   truevalue="true" falsevalue="false" help="Excludes parental lines which have not been selected as the recurrent, or donor parent from the analysis and results.">
+		</param>
+
 		<!-- WARNING: Below is the advanced options section shared by all of our tools. If you alter it here you must update the other tools as well.-->
 		<conditional name="adv_opts">
 			<param name="show_advanced" type="boolean"