view jbrowse-fromdir.xml @ 20:558d652cd681 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 75a0a1c7b26cac156f76e8266a0e2e3d81be7f02
author iuc
date Thu, 30 Aug 2018 11:43:59 -0400
parents ad4b9d7eae6a
children 5f70e7fe6077
line wrap: on
line source

<tool id="jbrowse_to_standalone" name="JBrowse - Data Directory to Standalone" version="@WRAPPER_VERSION@">
  <description>upgrades the bare data directory to a full JBrowse instance</description>
  <macros>
    <import>macros.xml</import>
  </macros>
  <expand macro="requirements"/>
  <expand macro="stdio"/>
  <command><![CDATA[
## Create output directory
mkdir -p $output.files_path &&
## Copy in jbrowse
cp -R \${JBROWSE_SOURCE_DIR}/* $output.files_path/ &&

## Copy in data directory
cp -R $input.dataset.extra_files_path/data/ $output.files_path/ &&
mv $output.files_path/index.html $output
]]></command>
  <inputs>
    <param label="JBrowse Data Directory"
           name="input"
           type="data"
           help="Look for datasets with 'JBrowse ... Data Directory' in the name"
           format="html" />
  </inputs>
  <outputs>
      <data format="html" name="output" label="#set $name = $input.name.replace('Data Directory', 'Standalone')# $name"/>
  </outputs>
  <tests>
  </tests>
  <help><![CDATA[
Upgrades an existing bare JBrowse "data" directory into a full-fledged JBrowse instance.

@ATTRIBUTION@
]]></help>
  <expand macro="citations"/>
</tool>