# HG changeset patch # User iuc # Date 1491860442 14400 # Node ID da8d655e215431ab35d78bf3c10954cc6ea06864 # Parent 2dbb7f0ea66fd028badfd39129ce580c99adefec planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hisat2 commit d3803bf87eb04a8c2a239e270c8c5c0596277890 diff -r 2dbb7f0ea66f -r da8d655e2154 hisat2.xml --- a/hisat2.xml Tue Apr 04 08:15:43 2017 -0400 +++ b/hisat2.xml Mon Apr 10 17:40:42 2017 -0400 @@ -1,5 +1,5 @@ - + A fast and sensitive alignment program hisat2_macros.xml @@ -20,6 +20,9 @@ ln -s '${spliced_options.known_splice_gtf}' splice_sites.gtf && hisat2_extract_splice_sites.py splice_sites.gtf > splice_sites.txt && #end if + + @FASTQGZ_SETUP@ + #if $reference_genome.reference_genome_source == "history": ln -s '$reference_genome.history_item' genome.fa && hisat2-build -p \${GALAXY_SLOTS:-1} genome.fa genome && @@ -28,19 +31,28 @@ #set index_path = $reference_genome.index.fields.path #end if hisat2 -p \${GALAXY_SLOTS:-1} -x '${index_path}' - #if str($input_format.paired.paired_selector) == 'paired': - -1 '${input_format.paired.reads_f}' -2 '${input_format.paired.reads_r}' - @paired_end_options@ - #else if str($input_format.paired.paired_selector) == 'paired_collection': - -1 '${input_format.paired.reads.forward}' -2 '${input_format.paired.reads.reverse}' + #if str($input_format.paired.paired_selector) != 'single': + -1 '${read1}' -2 '${read2}' @paired_end_options@ #else: - -U '${input_format.paired.reads}' + -U '${read1}' #if str( $input_format.paired.unaligned_file ) == "true": - --un '$output_unaligned_reads_l' + #if $compressed == "GZ": + --un-gz '$output_unaligned_reads_l' + #else if $compressed == "BZ2": + --un-gz '$output_unaligned_reads_l' + #else: + --un '$output_unaligned_reads_l' + #end if #end if #if str( $input_format.paired.aligned_file ) == "true": - --al '$output_aligned_reads_l' + #if $compressed == "GZ": + --al-gz '$output_aligned_reads_l' + #else if $compressed == "BZ2": + --al-bz2 '$output_aligned_reads_l' + #else: + --al '$output_aligned_reads_l' + #end if #end if #end if #if $input_format.input_format_selector == 'fasta': @@ -125,7 +137,7 @@ - + @@ -427,6 +439,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + @@ -55,15 +55,23 @@ - - + + #if str( $input_format.paired.unaligned_file ) == "true": - --un-conc '${output_unaligned_reads_l}' + #if $compressed == "GZ": + --un-conc-gz '${output_unaligned_reads_l}' + #else: + --un-conc '${output_unaligned_reads_l}' + #end if #end if #if str( $input_format.paired.aligned_file ) == "true": - --al-conc '${output_aligned_reads_l}' + #if $compressed == "GZ": + --al-conc '${output_aligned_reads_l}' + #else: + --al-conc '${output_aligned_reads_l}' + #end if #end if #if str($input_format.paired.paired_end_options.paired_end_options_selector) == 'advanced': ${input_format.paired.paired_end_options.no_mixed} @@ -77,4 +85,65 @@ #end if #end if + + + diff -r 2dbb7f0ea66f -r da8d655e2154 test-data/hisat_input_2_forward.fastq.bz2 Binary file test-data/hisat_input_2_forward.fastq.bz2 has changed diff -r 2dbb7f0ea66f -r da8d655e2154 test-data/hisat_input_2_forward.fastq.gz Binary file test-data/hisat_input_2_forward.fastq.gz has changed diff -r 2dbb7f0ea66f -r da8d655e2154 test-data/hisat_input_2_reverse.fastq.bz2 Binary file test-data/hisat_input_2_reverse.fastq.bz2 has changed diff -r 2dbb7f0ea66f -r da8d655e2154 test-data/hisat_input_2_reverse.fastq.gz Binary file test-data/hisat_input_2_reverse.fastq.gz has changed