# HG changeset patch
# User matnguyen
# Date 1549058163 18000
# Node ID c1b6f5fbbcadd7f4c8a7063a2c399448b645670e
# Parent 6a73638d707c7c51c7802093523cd670a7186997
Updated pathogist version
diff -r 6a73638d707c -r c1b6f5fbbcad galaxy/tools/concatenator/concatenator
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/galaxy/tools/concatenator/concatenator Fri Feb 01 16:56:03 2019 -0500
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+
+import sys
+import argparse as ap
+
+parser = ap.ArgumentParser(prog='concatenater', conflict_handler='resolve',
+ description="Concatenates all accessions and their associated paths")
+
+input = parser.add_argument_group('Input', '')
+input.add_argument('-n', '--name', nargs='+', required=True, help="Sample name (accessions)")
+input.add_argument('-i', '--input', nargs='+', required=True, help="Paths to calls")
+
+if len(sys.argv) == 1:
+ parser.print_usage()
+ sys.exit(1)
+
+args = parser.parse_args()
+output = open('paths.txt', 'w')
+
+for index,path in enumerate(args.input):
+ output.write("%s=%s\n" % (args.name[index], path))
diff -r 6a73638d707c -r c1b6f5fbbcad galaxy/tools/concatenator/concatenator.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/galaxy/tools/concatenator/concatenator.xml Fri Feb 01 16:56:03 2019 -0500
@@ -0,0 +1,27 @@
+
+ creates a list of accessions and the associated path to their variant calls
+
+ pathogist
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff -r 6a73638d707c -r c1b6f5fbbcad galaxy/tools/consensus_clustering/consensus_clustering.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/galaxy/tools/consensus_clustering/consensus_clustering.xml Fri Feb 01 16:56:03 2019 -0500
@@ -0,0 +1,34 @@
+
+ : Performs consensus clustering on multiple clusterings
+
+ pathogist
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff -r 6a73638d707c -r c1b6f5fbbcad galaxy/tools/correlation_clustering/correlation_clustering.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/galaxy/tools/correlation_clustering/correlation_clustering.xml Fri Feb 01 16:56:03 2019 -0500
@@ -0,0 +1,31 @@
+
+ : Runs correlation clustering on a distance matrix file
+
+ pathogist
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff -r 6a73638d707c -r c1b6f5fbbcad galaxy/tools/distance/distance.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/galaxy/tools/distance/distance.xml Fri Feb 01 16:56:03 2019 -0500
@@ -0,0 +1,32 @@
+
+ : Construct distance matrix from genotyping data
+
+ pathogist
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff -r 6a73638d707c -r c1b6f5fbbcad galaxy/tools/visualization/visualization.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/galaxy/tools/visualization/visualization.xml Fri Feb 01 16:56:03 2019 -0500
@@ -0,0 +1,31 @@
+
+ : Visualize distance matrix
+
+ pathogist
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdf == True
+
+
+
+
+
+
+
+
+
+
+
diff -r 6a73638d707c -r c1b6f5fbbcad tools/concatenator/concatenator
--- a/tools/concatenator/concatenator Fri Nov 16 15:28:27 2018 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-#!/usr/bin/env python
-
-import sys
-import argparse as ap
-
-parser = ap.ArgumentParser(prog='concatenater', conflict_handler='resolve',
- description="Concatenates all accessions and their associated paths")
-
-input = parser.add_argument_group('Input', '')
-input.add_argument('-n', '--name', nargs='+', required=True, help="Sample name (accessions)")
-input.add_argument('-i', '--input', nargs='+', required=True, help="Paths to calls")
-
-if len(sys.argv) == 1:
- parser.print_usage()
- sys.exit(1)
-
-args = parser.parse_args()
-output = open('paths.txt', 'w')
-
-for index,path in enumerate(args.input):
- output.write("%s=%s\n" % (args.name[index], path))
diff -r 6a73638d707c -r c1b6f5fbbcad tools/concatenator/concatenator.xml
--- a/tools/concatenator/concatenator.xml Fri Nov 16 15:28:27 2018 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-
- creates a list of accessions and the associated path to their variant calls
-
- pathogist
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff -r 6a73638d707c -r c1b6f5fbbcad tools/consensus_clustering/consensus_clustering.xml
--- a/tools/consensus_clustering/consensus_clustering.xml Fri Nov 16 15:28:27 2018 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-
- : Performs consensus clustering on multiple clusterings
-
- pathogist
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff -r 6a73638d707c -r c1b6f5fbbcad tools/correlation_clustering/correlation_clustering.xml
--- a/tools/correlation_clustering/correlation_clustering.xml Fri Nov 16 15:28:27 2018 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-
- : Runs correlation clustering on a distance matrix file
-
- pathogist
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff -r 6a73638d707c -r c1b6f5fbbcad tools/distance/distance.xml
--- a/tools/distance/distance.xml Fri Nov 16 15:28:27 2018 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-
- : Construct distance matrix from genotyping data
-
- pathogist
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff -r 6a73638d707c -r c1b6f5fbbcad tools/visualization/visualization.xml
--- a/tools/visualization/visualization.xml Fri Nov 16 15:28:27 2018 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-
- : Visualize distance matrix
-
- pathogist
-
-
-
-
-
-
-
-
-
-
-
-
-
- pdf == True
-
-
-
-
-
-
-
-
-
-
-