Mercurial > repos > bgruening > cp_image_math
comparison macros.xml @ 0:2005f8058036 draft
"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit 1907942bef43b20edfdbd1d1b5eb1cac3602848b"
author | bgruening |
---|---|
date | Thu, 16 Apr 2020 05:33:39 -0400 |
parents | |
children | 6d3851ac885f |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:2005f8058036 |
---|---|
1 <macros> | |
2 <token name="@CP_VERSION@">3.1.9</token> | |
3 <token name="@PY_VERSION@">3.7</token> | |
4 <token name="@FORMATS@">jpg,png,tiff,bmp,gif,pcx,ppm,psd,pbm,pgm,eps</token> | |
5 <token name="@SPACES@">" "</token> | |
6 <!-- four spaces needed for CP pipeline file --> | |
7 <token name="@COMMON_HELP@"> | |
8 .. class:: infomark | |
9 | |
10 **Input** | |
11 | |
12 Existing CellProfiler pipeline file *(.cppipe)* or generated by linking CellProfiler tools. | |
13 | |
14 .. class:: infomark | |
15 | |
16 **Output** | |
17 | |
18 The input CellProfiler pipeline file *(.cppipe)* in addition to the settings of this module. | |
19 | |
20 .. class:: warningmark | |
21 | |
22 **IMPORTANT** | |
23 | |
24 The first tool in a CellProfiler workflow has to be **Starting modules** and the last one **CellProfiler**. You can also execute the entire pipeline with the final CellProfiler tool, in which you feed in the images you want to process as well. | |
25 </token> | |
26 | |
27 | |
28 <xml name="output_pipeline_macro"> | |
29 <data name="out_file" from_work_dir="output" format="txt"/> | |
30 </xml> | |
31 | |
32 | |
33 <xml name="input_pipeline_macro"> | |
34 <param name="input_pipeline" type="data" format="data" label="Select the input CellProfiler pipeline"/> | |
35 </xml> | |
36 | |
37 | |
38 <xml name="cp_requirements"> | |
39 <requirements> | |
40 <requirement type="package" version="@CP_VERSION@">cellprofiler</requirement> | |
41 </requirements> | |
42 </xml> | |
43 | |
44 | |
45 <xml name="py_requirements"> | |
46 <requirements> | |
47 <requirement type="package" version="@PY_VERSION@">python</requirement> | |
48 </requirements> | |
49 </xml> | |
50 | |
51 | |
52 <xml name="citations"> | |
53 <citations> | |
54 <citation type="bibtex"> | |
55 @article{McQuin_2018, | |
56 title = {CellProfiler 3.0: Next-generation image processing for biology}, | |
57 author = {McQuin C, Goodman A, Chernyshev V, Kamentsky L, Cimini BA, Karhohs KW, Doan M, Ding L, Rafelski SM, Thirstrup D, Wiegraebe W, Singh S, Becker T, Caicedo JC, Carpenter AE}, | |
58 year = {2018}, | |
59 volume = {16(7):e2005970}, | |
60 DOI = {10.1371/journal.pbio.2005970}, | |
61 journal = {PLoS Biol.}, | |
62 url = {https://journals.plos.org/plosbiology/article?id=10.1371/journal.pbio.2005970}, | |
63 } | |
64 </citation> | |
65 </citations> | |
66 </xml> | |
67 | |
68 | |
69 <xml name="cmd_modules"> | |
70 <command detect_errors="aggressive"> | |
71 <![CDATA[ | |
72 python '$script_file' '$inputs' '$input_pipeline' | |
73 ]]> | |
74 </command> | |
75 </xml> | |
76 | |
77 | |
78 <xml name="text_validator"> | |
79 <validator type="regex" message="Only numbers, letters, hyphen, underscore and spaces are allowed">^[A-Za-z0-9 _-]*$</validator> | |
80 </xml> | |
81 | |
82 | |
83 <xml name="test_input_pipeline_param"> | |
84 <param name="input_pipeline" value="common.txt" /> | |
85 </xml> | |
86 | |
87 | |
88 <xml name="test_out_file" token_file="common.txt"> | |
89 <output name="out_file" ftype="txt" file="@FILE@" lines_diff="0"/> | |
90 </xml> | |
91 | |
92 | |
93 <xml name="help" token_module="common"> | |
94 <help> | |
95 This tool appends the inputs of the @MODULE@ module to an existing pipeline file (.cppipe) | |
96 | |
97 Input: existing pipeline file | |
98 | |
99 Output: new pipeline file | |
100 | |
101 Combine this tool with "Common" tool and "CellProfiler" tool together to run the current module alone. | |
102 </help> | |
103 </xml> | |
104 </macros> | |
105 |