Mercurial > repos > ebi-gxa > scmap_get_std_output
comparison scmap_get_std_output.xml @ 0:ec7095fd8bb0 draft
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 542b6e6848acedbbedb6fa2d4b44c8d476597cdd"
| author | ebi-gxa |
|---|---|
| date | Fri, 03 Apr 2020 10:30:41 +0000 |
| parents | |
| children | 7f7a18fb4153 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:ec7095fd8bb0 |
|---|---|
| 1 <tool id="scmap_get_std_output" name="scmap get standard output" version="@TOOL_VERSION@+galaxy1" profile="@PROFILE@"> | |
| 2 <description>Create final output in standard format to allow for downstream analysis of predicted labels by tools of the EBI gene expression group's cell-types-analysis package</description> | |
| 3 <macros> | |
| 4 <import>scmap_macros.xml</import> | |
| 5 </macros> | |
| 6 <expand macro="requirements" /> | |
| 7 <command detect_errors="exit_code"><![CDATA[ | |
| 8 scmap_get_std_output.R --predictions-file "${input_predictions_file}" --output-table "${output_predictions_file}" --include-scores "${include_scores}" --sim-col-name "${sim_col_name}" | |
| 9 ]]></command> | |
| 10 <inputs> | |
| 11 <param type="data" name="input_predictions_file" label="Scmap predictions file in text format" format="txt" help="Path to the predictions file in text format" /> | |
| 12 <param type="boolean" name="include_scores" checked="false" label="Should prediction scores be included?" help="Boolean indicating whether similarity scores should be included in the final output" /> | |
| 13 <param type="text" name="sim_col_name" value="scmap_cluster_siml" label="Column name of similarity scores" help="Name of column that contains distances between clusters/cells" /> | |
| 14 </inputs> | |
| 15 <outputs> | |
| 16 <data name="output_predictions_file" format="txt" /> | |
| 17 </outputs> | |
| 18 <tests> | |
| 19 <test> | |
| 20 <param name="input_predictions_file" value="project_cluster.csv" /> | |
| 21 <param name="include_scores" value="TRUE" /> | |
| 22 <output name="output_predictions_file" value="scmap_output_tbl.txt" compare="sim_size" /> | |
| 23 </test> | |
| 24 </tests> | |
| 25 <help><![CDATA[ | |
| 26 Generate output tables in tab-separated format compatible with input specified in cell-types-analysis package: https://github.com/ebi-gene-expression-group/cell-types-analysis. | |
| 27 See the example snippet below: | |
| 28 ________________________________________ | |
| 29 | cell_id | predicted_label | score | | |
| 30 | ERR2632411 | memory B cell | 0.8 | | |
| 31 ... | |
| 32 | |
| 33 @VERSION_HISTORY@ | |
| 34 ]]></help> | |
| 35 <expand macro="citations" /> | |
| 36 </tool> | |
| 37 | |
| 38 |
