comparison tools/myTools/12_extract_perts.xml @ 1:7e5c71b2e71f draft default tip

Uploaded
author laurenmarazzi
date Wed, 22 Dec 2021 16:00:34 +0000
parents
children
comparison
equal deleted inserted replaced
0:f24d4892aaed 1:7e5c71b2e71f
1 <tool id="netisce12" name="Netisce Step 12" version="0.1.0" python_template_version="3.5">
2 <description>Extracts the combinations of perturbations on FVS control nodes that pass filtering criterion 2</description>
3
4 <requirements>
5 <requirement type="package" version="1.1.5">pandas</requirement>
6 <requirement type="package" version="3.5.0">sys</requirement>
7 </requirements>
8
9 <command> python3 '$__tool_directory__/bin/get_perts.py' '$fvs_init' '$fvs' '$filtered_perts' </command>
10
11 <inputs>
12 <param name="fvs_init" type="data" format="txt" label="FVS perturbations initialization"/>
13 <param name="fvs" type="data" format="txt" label="Minimal Feedback Vertex Set"/>
14 <param name="filtered_perts" type="data" format="txt" label="list of perturbation IDs that passed filtering criterion 2. "/>
15
16 </inputs>
17
18 <outputs>
19 <data name="output" format="txt" from_work_dir="extracted_perts.txt" label="combinations of perturbations on FVS control nodes that pass filtering criterion 2."/>
20 </outputs>
21
22 <tests>
23 <test>
24 <param name="fvs_init" value="init.txt"/>
25 <param name="fvs" value="fvs.txt"/>
26 <param name="filtered_perts" value="crit2_perturbations.txt"/>
27 <output name="output" value="extract_perts.txt" ftype="txt" />
28 </test>
29 </tests>
30
31 <help>
32 This tool extracts the combinations of perturbations on FVS control nodes that pass filtering criterion 2.
33 Required Inputs:
34 1. Random Perturbation States for Feedback Vertex Set
35 2. Feedback Vertex Set
36 3. Perturbation Attractors that successfully shifted the network from undesired to desired state
37 </help>
38
39 </tool>