# HG changeset patch
# User greg
# Date 1507227797 14400
# Node ID 9962341547d3a33f17c84570c4af71795f960fa0
# Parent 4c9a4aa6adce9b0e016d372ef089f5ea014ec7b3
Uploaded
diff -r 4c9a4aa6adce -r 9962341547d3 .shed.yml
--- a/.shed.yml Fri Sep 08 10:47:33 2017 -0400
+++ b/.shed.yml Thu Oct 05 14:23:17 2017 -0400
@@ -8,7 +8,7 @@
complete protein sequences from sequenced plant genomes to perform comparative evolutionary studies. It performs phylogenomic
analyses by creating multiple sequence alignments and inferred maximum likelihood phylogenies for orthogroups produced by the
GeneFamilyAligner tool.
-remote_repository_url: https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/plant_tribes/gene_family_phylogeny_builder
+remote_repository_url: https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/phylogenetics/plant_tribes/gene_family_phylogeny_builder
type: unrestricted
categories:
- Phylogenetics
diff -r 4c9a4aa6adce -r 9962341547d3 gene_family_phylogeny_builder.xml
--- a/gene_family_phylogeny_builder.xml Fri Sep 08 10:47:33 2017 -0400
+++ b/gene_family_phylogeny_builder.xml Thu Oct 05 14:23:17 2017 -0400
@@ -3,7 +3,9 @@
macros.xml
-
+
+ plant_tribes_gene_family_phylogeny_builder
+
1.0
-
-
- plant_tribes_assembly_post_processor
-
-
-
-
- plant_tribes_gene_family_aligner
-
-
-
-
- plant_tribes_gene_family_classifier
-
-
-
-
- plant_tribes_gene_family_integrator
-
-
-
-
- plant_tribes_kaks_analysis
-
-
-
-
- r-optparse
-
-
-
-
- plant_tribes_gene_family_phylogeny_builder
-
-
-
-
-
-
-
-
@@ -49,72 +8,12 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@misc{None,
diff -r 4c9a4aa6adce -r 9962341547d3 utils.py
--- a/utils.py Fri Sep 08 10:47:33 2017 -0400
+++ b/utils.py Thu Oct 05 14:23:17 2017 -0400
@@ -27,7 +27,7 @@
return fstderr, fherr, fstdout, fhout
-def move_directory_files(source_dir, destination_dir, copy=False):
+def move_directory_files(source_dir, destination_dir, copy=False, remove_source_dir=False):
source_directory = os.path.abspath(source_dir)
destination_directory = os.path.abspath(destination_dir)
if not os.path.isdir(destination_directory):
@@ -38,6 +38,8 @@
shutil.copy(source_entry, destination_directory)
else:
shutil.move(source_entry, destination_directory)
+ if remove_source_dir:
+ os.rmdir(source_directory)
def run_command(cmd):