Mercurial > repos > prog > isaextractor
diff isa2netcdf.xml @ 0:deb654d58b15 draft default tip
"planemo upload commit c2694fb4aa55c4f25eb53db73496eaf5e56d7872"
| author | prog |
|---|---|
| date | Wed, 08 Jan 2020 12:47:49 +0000 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/isa2netcdf.xml Wed Jan 08 12:47:49 2020 +0000 @@ -0,0 +1,77 @@ +<!-- vi: se fdm=marker : --> +<tool id="isa2netcdf" name="ISA to netCDF" version="1.3.0"> + + <description>Extract netCDF files from an ISA dataset and output a collection of netCDF dataset.</description> + + <!-- Command {{{1 --> + + <command><![CDATA[ + ## @@@BEGIN_CHEETAH@@@ + + $__tool_directory__/extract-from-isa + -i "$isa.extra_files_path" + -e CDF + -o netCDF + + ## @@@END_CHEETAH@@@ + ]]></command> + + <!-- Inputs {{{1 --> + + <inputs> + <param name="isa" label="ISA" type="data" format="isa-tab"/> + </inputs> + + <!-- Outputs {{{1 --> + + <outputs> + <collection name="netCDF" type="list" label="netCDF files"> + <discover_datasets pattern="(?P<designation>.+)\.[cC][dD][fF]$" directory="netCDF" format="netcdf"/> + </collection> + </outputs> + + <!-- Tests {{{1 --> + <tests> + <test> + <param name="isa" value="netcdf_study.zip" ftype="isa-tab"/> + <output_collection name="netCDF" type="list" count="1"> + <element name="empty" file="netcdf_study_output/empty.CDF" ftype="netcdf"/> + </output_collection> + </test> + </tests> + + <!-- Help {{{1 --> + <help> +<!-- @@@BEGIN_RST@@@ --> + +==================== +ISA to netCDF +==================== + +Extract netCDF files contained inside an ISA archive. + +----- +Input +----- + +ISA dataset +=========== + +The ISA-Tab dataset from which to extract the files. + +------ +Output +------ + +The output is a collection of netCDF files. + +<!-- @@@END_RST@@@ --> + </help> + + <!-- Citations {{{1 --> + <citations> + <citation type="doi">10.1038/ng.1054</citation> <!-- ISA --> + <citation type="doi">10.1093/bioinformatics/btu813</citation> <!-- W4M --> + </citations> + +</tool>
