mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-19 02:21:32 +08:00
accidental files more files migrate ITs from EU accidental files more files migrate ITs from EU accidental files more files migrate ITs from EU accidental files more files
76 lines
3.2 KiB
XML
76 lines
3.2 KiB
XML
<tool id="interactive_tool_radiant" tool_type="interactive" name="radiant" version="0.1">
|
||
<description>Data analytics using Radiant R Shiny app</description>
|
||
<requirements>
|
||
<container type="docker">ylebras/radiant-docker</container>
|
||
</requirements>
|
||
<entry_points>
|
||
<entry_point name="radiant visualisation" requires_domain="True">
|
||
<port>3838</port>
|
||
<url>/sample-apps/STAT/inst/app</url>
|
||
</entry_point>
|
||
</entry_points>
|
||
<environment_variables>
|
||
<environment_variable name="HISTORY_ID">$__history_id__</environment_variable>
|
||
<environment_variable name="REMOTE_HOST">$__galaxy_url__</environment_variable>
|
||
<environment_variable name="GALAXY_WEB_PORT">8080</environment_variable>
|
||
<environment_variable name="GALAXY_URL">$__galaxy_url__</environment_variable>
|
||
<environment_variable name="API_KEY" inject="api_key" />
|
||
</environment_variables>
|
||
<command><![CDATA[
|
||
|
||
mkdir -p /srv/shiny-server/data/ &&
|
||
cp '$infile' /srv/shiny-server/data/inputdata.txt &&
|
||
|
||
mkdir -p /var/log/shiny-server &&
|
||
chown shiny.shiny /var/log/shiny-server &&
|
||
|
||
chown shiny.shiny /home/shiny/.Rprofile &&
|
||
|
||
exec shiny-server >> /var/log/shiny-server.log 2>&1
|
||
]]>
|
||
</command>
|
||
<inputs>
|
||
<param name="infile" type="data" format="tabular,csv" label="tabular or csv file"/>
|
||
</inputs>
|
||
<outputs>
|
||
<data name="outfile" format="txt" />
|
||
</outputs>
|
||
<tests>
|
||
</tests>
|
||
<help>
|
||
<![CDATA[
|
||
`Radiant <https://radiant-rstats.github.io/docs/>`_ is an open-source platform-independent browser-based interface for business analytics in R. The application is based on the Shiny package and can be run locally or on a server. Radiant was developed by Vincent Nijs. Please use the issue tracker on GitHub to suggest enhancements or report problems: https://github.com/radiant-rstats/radiant/issues. For other questions and comments please use radiant@rady.ucsd.edu.
|
||
Key features
|
||
|
||
- Explore: Quickly and easily summarize, visualize, and analyze your data
|
||
- Cross-platform: It runs in a browser on Windows, Mac, and Linux
|
||
- Reproducible: Recreate results and share work with others as a state file or an Rmarkdown report
|
||
- Programming: Integrate Radiant’s analysis functions with your own R-code
|
||
- Context: Data and examples focus on business applications
|
||
|
||
.. class:: infomark
|
||
|
||
Example input file (TAB separated)::
|
||
|
||
"name" "longitude" "latitude" "countryCode"
|
||
Accipiter striatus Vieillot, 1808 -60.291838 46.328137 CA
|
||
Accipiter striatus Vieillot, 1808 -114.58927 35.022485 US
|
||
Accipiter striatus Vieillot, 1808 -93.37406 30.00586 US
|
||
Accipiter striatus Vieillot, 1808 -79.336288 43.682218 CA
|
||
Accipiter striatus Vieillot, 1808 -109.156024 31.904185 US
|
||
Accipiter striatus Vieillot, 1808 -71.098031 42.297408 US
|
||
Accipiter striatus Vieillot, 1808 -110.927215 32.18203 US
|
||
|
||
]]>
|
||
</help>
|
||
<citations>
|
||
<citation type="bibtex">@misc{githubsurvey2018,
|
||
author = {vnijs},
|
||
title = {{Radiant - Business analytics using R and Shiny}},
|
||
publisher = {Github},
|
||
url = {https://github.com/vnijs/radiant}
|
||
}
|
||
}</citation>
|
||
</citations>
|
||
</tool>
|