-
Notifications
You must be signed in to change notification settings - Fork 7
/
PingPong.xml
56 lines (45 loc) · 2.01 KB
/
PingPong.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!--
Copyright (C) 2015 Laurent Modolo
This file is part of TEtools suite for galaxy.
TEtools is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
TEtools is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with TEtools. If not, see <http://www.gnu.org/licenses/>.
-->
<tool id="PingPong" name="PingPong" version="1.0.0" hidden="false">
<description>PingPong signal analysis</description>
<version_command interpreter="python3">PingPong.py -v</version_command>
<command interpreter="python3">${__root_dir__}/tools/pi_galaxy/PingPong.py
-fastq=$fastq_files
-fasta=
#for $fastq_file in $fastq_files:
$fastq_file
#end for
-TE_names=$TE_names
</command>
<inputs>
<param name="fasta_file" type="data" format="fasta" label="fasta file that contain the sequence(s) of the transposable element(s) to analyse" />
<param name="TE_names" size="30x10" type="text" value="" label="space sperated list of TE sequences names to analyse"/>
<repeat name="fastq_files" title="fastq file">
<param name="fastq_file" type="data" format="fastq" label="fastq file"/>
</repeat>
</inputs>
<outputs>
<data label="${tool.name} on ${on_string}">
<discover_datasets pattern="__designation_and_ext__" directory="pingpong_working_directory" visible="true" />
</data>
</outputs>
<requirements>
<requirement type="package">Rscript</requirement>
</requirements>
<help>
PingPong documentation:
=======================
</help>
</tool>