view json2iframe.xml @ 11:e1346ad005b3 draft

"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollo commit 81492a9c8b9e5649a3867bc30afe617a30fb47a1"
author gga
date Tue, 14 Apr 2020 10:39:09 -0400
parents c6172b538caf
children
line wrap: on
line source

<?xml version="1.0"?>
<tool id="iframe" name="Annotate" version="@WRAPPER_VERSION@">
  <description>opens an IFrame to Apollo</description>
  <macros>
    <import>macros.xml</import>
  </macros>
  <expand macro="requirements"/>
  <command detect_errors="aggressive"><![CDATA[
python $__tool_directory__/json2iframe.py
@URL@
'$json_file'
@EXT_URL@
$tracklist
> $output]]></command>
  <inputs>
    <param name="json_file" type="data" format="json" label="Apollo Organism Listing" />
    <param name="tracklist" type="boolean" truevalue="--tracklist" falsevalue="" label="Force the tracklist on in JBrowse"/>
  </inputs>
  <outputs>
    <data format="html" name="output"/>
  </outputs>
  <tests>
      <test>
          <param name="json_file" value="fake.json"/>
          <output name="output">
              <assert_contents>
                  <has_text text="Embedded Apollo Access" />
              </assert_contents>
          </output>
      </test>
  </tests>
  <help><![CDATA[
**What it does**

Given a json file that's output by the Galaxy<->Apollo bridge, this
generates a nice little IFrame that you can use to access Apollo

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