# HG changeset patch # User iuc # Date 1492690334 14400 # Node ID 0b44456754e28a62fafee034df9b140f7aef890d # Parent 93704f98f56e2aae463a21d3ee57415a5db847eb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/star_fusion commit d6a7537117d814677113ba9a8e4783a80dd228a2 diff -r 93704f98f56e -r 0b44456754e2 star_fusion.xml --- a/star_fusion.xml Tue Sep 06 04:55:21 2016 -0400 +++ b/star_fusion.xml Thu Apr 20 08:12:14 2017 -0400 @@ -1,4 +1,4 @@ - + detect fusion genes in RNA-Seq data @@ -46,15 +46,34 @@ --CPU \${GALAXY_SLOTS:-1} --output_dir "\$(pwd)/tmp_star_fusion_genome_dir" && + + ## Link in fastq files so they have appropriate extensions + #if str($input_params.input_source) != "use_chimeric": + #if $input_params.left_fq.is_of_type("fastq.gz"): + #set read1 = 'input_1.fastq.gz' + #else: + #set read1 = 'input_1.fastq' + #end if + ln -f -s '${input_params.left_fq}' ${read1} && + + #if $input_params.right_fq: + #if $input_params.right_fq.is_of_type("fastq.gz"): + #set read2 = 'input_2.fastq.gz' + #else: + #set read2 = 'input_2.fastq' + #end if + ln -f -s '${input_params.right_fq}' ${read2} && + #end if + #end if ## 3. Run STAR-Fusion STAR-Fusion #if str($input_params.input_source) == "use_chimeric": --chimeric_junction '${input_params.chimeric_junction}' #else: - --left_fq '${input_params.left_fq}' + --left_fq ${read1} #if $input_params.right_fq: - --right_fq '${input_params.right_fq}' + --right_fq ${read2} #end if #end if @@ -89,12 +108,12 @@ @@ -121,7 +140,6 @@ @@ -220,6 +238,23 @@ + + + + + + + + + + + + + + + + + **What it does** diff -r 93704f98f56e -r 0b44456754e2 test-data/test1.fastqsanger.gz Binary file test-data/test1.fastqsanger.gz has changed