# HG changeset patch # User peterjc # Date 1494939237 14400 # Node ID 2709a0f065c9b5ebbdc301c03b3de2877655b539 # Parent f396701fbf325548bd0d67beb799e59ad436e808 v0.1.4 Internal changes to command line handling diff -r f396701fbf32 -r 2709a0f065c9 tools/fastq_paired_unpaired/README.rst --- a/tools/fastq_paired_unpaired/README.rst Wed May 10 13:28:59 2017 -0400 +++ b/tools/fastq_paired_unpaired/README.rst Tue May 16 08:53:57 2017 -0400 @@ -74,6 +74,8 @@ v0.1.3 - Minor internal changes to Python script for error reporting & style. - Updated to point at Biopython 1.67 (latest version in Tool Shed). - Explicit dependency on ``galaxy_sequence_utils``. +v0.1.4 - Use ```` (internal change only). + - Single quote command line arguments (internal change only). ======= ====================================================================== diff -r f396701fbf32 -r 2709a0f065c9 tools/fastq_paired_unpaired/fastq_paired_unpaired.xml --- a/tools/fastq_paired_unpaired/fastq_paired_unpaired.xml Wed May 10 13:28:59 2017 -0400 +++ b/tools/fastq_paired_unpaired/fastq_paired_unpaired.xml Tue May 16 08:53:57 2017 -0400 @@ -1,21 +1,18 @@ - + using the read name suffices galaxy_sequence_utils biopython - - - - - - fastq_paired_unpaired.py --version - -fastq_paired_unpaired.py $input_fastq.extension $input_fastq + +python $__tool_directory__/fastq_paired_unpaired.py --version + + +python $__tool_directory__/fastq_paired_unpaired.py '$input_fastq.extension' '$input_fastq' #if $output_choice_cond.output_choice=="separate" - $output_forward $output_reverse + '$output_forward' '$output_reverse' #elif $output_choice_cond.output_choice=="interleaved" - $output_paired + '$output_paired' #end if $output_singles