Mercurial > repos > jdv > albacore
diff albacore_1D.xml @ 0:f8e25d69167d draft
planemo upload for repository https://github.com/jvolkening/galaxy-tools/tree/master/tools/albacore commit bf5788ad5a3293446a50a3246b44ba09174c9b71
author | jdv |
---|---|
date | Wed, 30 Aug 2017 02:47:27 -0400 |
parents | |
children | 0a4f83207e53 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/albacore_1D.xml Wed Aug 30 02:47:27 2017 -0400 @@ -0,0 +1,78 @@ +<tool id="albacore_1D" name="Albacore 1D" version="1.2.6"> + + <description>ONT production basecaller</description> + + <!-- ***************************************************************** --> + + <!-- + <requirements> + <requirement type="package" version="1.2.6">albacore</requirement> + </requirements> + --> + + <!-- ***************************************************************** --> + + <version_command>read_fast5_basecaller.py --version | perl -wnE'print "$1\n" for /\(version ([^\)]+)\)/g'</version_command> + + <!-- ***************************************************************** --> + + <command detect_errors="aggressive"> + <![CDATA[ + + python3 $__tool_directory__/albacore_1D.py $input $output \${GALAXY_SLOTS:-1} + + ]]> + </command> + + <!-- ***************************************************************** --> + + <inputs> + + <param name="input" type="data" format="fast5_archive" label="Input reads" /> + + </inputs> + + <!-- ***************************************************************** --> + + <outputs> + + <data name="output" format="fastq" label="${tool.name} on ${on_string} (called.fastq)" /> + + </outputs> + + <!-- ***************************************************************** --> + + <tests> + <test> + <param name="input" value="test_data.fast5.tar.gz" ftype="fast5_archive" /> + <output name="output" file="test_data.fastq" compare="diff" /> + </test> + </tests> + + <!-- ***************************************************************** --> + + <help> + <![CDATA[ + +**Description** + +Albacore is a tool for basecalling Oxford Nanopore reads. It is distributed by +ONT to authorized community members only and thus is not packaged through +Galaxy or Bioconda. End users are responsible for installing and testing the +albacore software themselves and ensuring that it is in the galaxy user $PATH. + +The Galaxy wrapper has modified albacore to take a gzip tarball of FAST5 reads +as input, such as can be produced by `poretools combine`, and always outputs a +single FASTQ file. + +This is the 1D basecaller. + + ]]> + </help> + + <!-- ***************************************************************** --> + + <citations> + </citations> + +</tool>