# HG changeset patch
# User wolma
# Date 1465686644 14400
# Node ID c464064666258deb66c1168d29ea311637ebe9f1
# Parent aba6d9b1c1f1f2d475f25ee4b56d6989059298e0
Uploaded
diff -r aba6d9b1c1f1 -r c46406466625 README.md
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/README.md Sat Jun 11 19:10:44 2016 -0400
@@ -0,0 +1,9 @@
+# README #
+
+This is the development repository for the **mimodd** package for Galaxy toolsheds.
+
+### What is this about? ###
+
+[MiModD](http://www.celegans.de/mimodd) is an integrated solution for mapping-by-sequencing analysis of whole-genome sequencing (WGS) data from laboratory model organisms. It enables geneticists to identify the genetic mutations present in an organism starting from just raw WGS read data and a reference genome without the help of a trained bioinformatician. Its linkage analysis engine NacreousMap represents a further development of and can be used as a drop-in replacement for CloudMap.
+
+The Galaxy Tool Shed installer for MiModD lets Galaxy server admins perform a one-click installation of a fully functional version of the software with no requirements other than gcc/c++ and the make utility preinstalled. For further information about installing MiModD from a Galaxy Tool Shed please refer to the [MiModD User Guide](http://mimodd.readthedocs.io/en/latest/INSTALL.html#tool-shed-installation).
\ No newline at end of file
diff -r aba6d9b1c1f1 -r c46406466625 annotate_variants.xml
--- a/annotate_variants.xml Fri Apr 29 06:01:46 2016 -0400
+++ b/annotate_variants.xml Sat Jun 11 19:10:44 2016 -0400
@@ -4,9 +4,9 @@
toolshed_macros.xml
- mimodd version -q
+ python3 -m MiModD version -q
- mimodd annotate
+ python3 -m MiModD annotate
"$inputfile"
diff -r aba6d9b1c1f1 -r c46406466625 bamsort.xml
--- a/bamsort.xml Fri Apr 29 06:01:46 2016 -0400
+++ b/bamsort.xml Sat Jun 11 19:10:44 2016 -0400
@@ -4,9 +4,9 @@
toolshed_macros.xml
- mimodd version -q
+ python3 -m MiModD version -q
- mimodd sort "$input.ifile" -o "$output" --iformat $input.iformat --oformat $oformat $by_name
+ python3 -m MiModD sort "$input.ifile" -o "$output" --iformat $input.iformat --oformat $oformat $by_name
diff -r aba6d9b1c1f1 -r c46406466625 cloudmap.xml
--- a/cloudmap.xml Fri Apr 29 06:01:46 2016 -0400
+++ b/cloudmap.xml Sat Jun 11 19:10:44 2016 -0400
@@ -1,9 +1,9 @@
Map causative mutations by multi-variant linkage analysis.
- mimodd version -q
+ python3 -m MiModD version -q
- mimodd map ${opt.mode} "${opt.source.ifile}"
+ python3 -m MiModD map ${opt.mode} "${opt.source.ifile}"
#if $str($opt.source.sample):
-m "${opt.source.sample}"
#end if
diff -r aba6d9b1c1f1 -r c46406466625 convert.xml
--- a/convert.xml Fri Apr 29 06:01:46 2016 -0400
+++ b/convert.xml Sat Jun 11 19:10:44 2016 -0400
@@ -4,7 +4,7 @@
toolshed_macros.xml
- mimodd version -q
+ python3 -m MiModD version -q
#if $str($mode.split_on_rgs) or $str($mode.oformat)=="fastq" or $str($mode.oformat)=="gz":
echo "Your input data is now getting processed by MiModD. The output will be split into several files based on the read groups found in the input.\nThis history item will remain in the busy state until the job is finished.\nAfter the job is showing as finished, Galaxy will start adding the results files to your history one by one.\n\nThis may take a while to complete! \n\nYou should refresh your history to see if new files have arrived.\n\nThis message is for your information only and can be deleted from the history once the job has finished." > $output_split_on_read_groups;
@@ -12,7 +12,7 @@
mkdir converted_data;
#end if
- mimodd convert
+ python3 -m MiModD convert
#for $i in $mode.input_list
"${i.file1}"
diff -r aba6d9b1c1f1 -r c46406466625 covstats.xml
--- a/covstats.xml Fri Apr 29 06:01:46 2016 -0400
+++ b/covstats.xml Sat Jun 11 19:10:44 2016 -0400
@@ -4,9 +4,9 @@
toolshed_macros.xml
- mimodd version -q
+ python3 -m MiModD version -q
- mimodd covstats "$ifile" --ofile "$output_vcf"
+ python3 -m MiModD covstats "$ifile" --ofile "$output_vcf"
diff -r aba6d9b1c1f1 -r c46406466625 deletion_predictor.xml
--- a/deletion_predictor.xml Fri Apr 29 06:01:46 2016 -0400
+++ b/deletion_predictor.xml Sat Jun 11 19:10:44 2016 -0400
@@ -4,9 +4,9 @@
toolshed_macros.xml
- mimodd version -q
+ python3 -m MiModD version -q
- mimodd delcall
+ python3 -m MiModD delcall
#for $l in $list_input
"${l.bamfile}"
#end for
diff -r aba6d9b1c1f1 -r c46406466625 fileinfo.xml
--- a/fileinfo.xml Fri Apr 29 06:01:46 2016 -0400
+++ b/fileinfo.xml Sat Jun 11 19:10:44 2016 -0400
@@ -4,9 +4,9 @@
toolshed_macros.xml
- mimodd version -q
+ python3 -m MiModD version -q
- mimodd info "$ifile" -o "$outputfile" --verbose --oformat $oformat
+ python3 -m MiModD info "$ifile" -o "$outputfile" --verbose --oformat $oformat
diff -r aba6d9b1c1f1 -r c46406466625 reheader.xml
--- a/reheader.xml Fri Apr 29 06:01:46 2016 -0400
+++ b/reheader.xml Sat Jun 11 19:10:44 2016 -0400
@@ -1,10 +1,10 @@