annotate biomodels_BIOMD0000001066.xml @ 4:48024c5a155f draft default tip

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit db3b6bfca3b7fbacd3e6e907a138b0c83ba8443a
author bgruening
date Wed, 20 Mar 2024 16:58:56 +0000
parents e5d28e255f58
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
48024c5a155f planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit db3b6bfca3b7fbacd3e6e907a138b0c83ba8443a
bgruening
parents: 3
diff changeset
1 <tool id="biomodels_biomd0000001066" name="Random Forest model" version="@VERSION@" profile="@PROFILE@">
0
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
2 <description>to predict efficacy of immune checkpoint blockade across multiple cancer patient cohorts</description>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
3 <macros>
4
48024c5a155f planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit db3b6bfca3b7fbacd3e6e907a138b0c83ba8443a
bgruening
parents: 3
diff changeset
4 <import>macros.xml</import>
0
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
5 </macros>
4
48024c5a155f planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit db3b6bfca3b7fbacd3e6e907a138b0c83ba8443a
bgruening
parents: 3
diff changeset
6 <expand macro="creators" />
0
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
7 <requirements>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
8 <container type="docker">quay.io/galaxy/biomodels_biomd0000001066:@VERSION@</container>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
9 </requirements>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
10 <command><![CDATA[
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
11 cp /home/\$NB_USER/forest16.onnx ./ &&
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
12 python '$biom_script'
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
13 ]]>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
14 </command>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
15 <configfiles>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
16 <configfile name="biom_script">
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
17 <![CDATA[
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
18 import os
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
19 import argparse
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
20 import numpy
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
21 import onnxruntime as rt
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
22 import pandas as pd
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
23
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
24 #if $input_file.ext == "xlsx":
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
25 data_test = pd.read_excel('$input_file')
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
26 #elif $input_file.ext == "tabular":
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
27 data_test = pd.read_csv('$input_file', sep="\t")
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
28 #elif $input_file.ext == "csv":
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
29 data_test = pd.read_csv('$input_file', sep=",")
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
30 #end if
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
31
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
32 rf16=["Cancer_Type2", "Albumin", "HED", "TMB", "FCNA", "BMI", "NLR", "Platelets", "HGB", "Stage (1:IV; 0:I-III)", "Age", "Drug (1:Combo; 0:PD1/PDL1orCTLA4)", "Chemo_before_IO (1:Yes; 0:No)","HLA_LOH", "MSI (1:Unstable; 0:Stable_Indeterminate)", "Sex (1:Male; 0:Female)"]
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
33 x_test16 = pd.DataFrame(data_test, columns=rf16)
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
34 sess = rt.InferenceSession(os.getcwd() + "/forest16.onnx")
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
35 input_name = sess.get_inputs()[0].name
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
36 label_name = sess.get_outputs()[0].name
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
37 pred_onx = sess.run([label_name], {input_name: x_test16.astype(numpy.float32).values})[0]
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
38 x_test16["Predictions"] = pred_onx
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
39 x_test16.to_csv('$output_file', sep="\t", index=None)
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
40
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
41 ]]>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
42 </configfile>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
43 </configfiles>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
44 <inputs>
3
e5d28e255f58 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit fe5cbcff4786c445b47538472ca4b4a099d2f652
bgruening
parents: 2
diff changeset
45 <param name="input_file" type="data" label="Test data" format="tabular,csv,xlsx" multiple="false" />
0
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
46 </inputs>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
47 <outputs>
3
e5d28e255f58 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit fe5cbcff4786c445b47538472ca4b4a099d2f652
bgruening
parents: 2
diff changeset
48 <data format="tabular" name="output_file" label="Predicted data"></data>
0
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
49 </outputs>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
50 <tests>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
51 <test>
3
e5d28e255f58 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit fe5cbcff4786c445b47538472ca4b4a099d2f652
bgruening
parents: 2
diff changeset
52 <param name="input_file" value="test_data.tabular" ftype="tabular" />
0
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
53 <output name="output_file" file="pred_data.tabular">
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
54 <assert_contents>
3
e5d28e255f58 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit fe5cbcff4786c445b47538472ca4b4a099d2f652
bgruening
parents: 2
diff changeset
55 <has_n_columns n="17" />
e5d28e255f58 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit fe5cbcff4786c445b47538472ca4b4a099d2f652
bgruening
parents: 2
diff changeset
56 <has_n_lines n="296" />
0
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
57 </assert_contents>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
58 </output>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
59 </test>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
60 <test>
3
e5d28e255f58 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit fe5cbcff4786c445b47538472ca4b4a099d2f652
bgruening
parents: 2
diff changeset
61 <param name="input_file" value="test_data.csv" ftype="csv" />
0
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
62 <output name="output_file" file="pred_data.tabular">
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
63 <assert_contents>
3
e5d28e255f58 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit fe5cbcff4786c445b47538472ca4b4a099d2f652
bgruening
parents: 2
diff changeset
64 <has_n_columns n="17" />
e5d28e255f58 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit fe5cbcff4786c445b47538472ca4b4a099d2f652
bgruening
parents: 2
diff changeset
65 <has_n_lines n="296" />
0
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
66 </assert_contents>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
67 </output>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
68 </test>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
69 <test>
3
e5d28e255f58 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit fe5cbcff4786c445b47538472ca4b4a099d2f652
bgruening
parents: 2
diff changeset
70 <param name="input_file" value="test_data.xlsx" ftype="xlsx" />
0
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
71 <output name="output_file" file="pred_data.tabular">
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
72 <assert_contents>
3
e5d28e255f58 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit fe5cbcff4786c445b47538472ca4b4a099d2f652
bgruening
parents: 2
diff changeset
73 <has_n_columns n="17" />
e5d28e255f58 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools commit fe5cbcff4786c445b47538472ca4b4a099d2f652
bgruening
parents: 2
diff changeset
74 <has_n_lines n="296" />
0
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
75 </assert_contents>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
76 </output>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
77 </test>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
78 </tests>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
79 <help>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
80 <![CDATA[
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
81 **What it does**
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
82
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
83
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
84 The tool makes prediction of either responder (1) or non-responder (0) to an immunotherapy for multiple different cancer types. The features used to train a Random Forest (RF16) model include 16 genomic, molecular, demographic, and clinical. More details in associated publication: "Improved prediction of immune checkpoint blockade efficacy across multiple cancer types" (https://pubmed.ncbi.nlm.nih.gov/34725502/). The model is available via a Docker container.
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
85
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
86 **Description**
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
87
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
88 This is a Random Forest algorithm-based machine learning model called RF16, which incorporates a total of 16 genomic, molecular, demographic, and clinical features to predict the immunotherapy response for a patient. The model assigns a value of 0 for NonResponder and 1 for Responder. Please be aware that the column names in the GitHub code and the downloaded dataset from the publication may vary. Users are advised to make minor adjustments to either the code or the dataset to ensure compatibility. The curated version of the model has modified the column names in the training code to align with the dataset. The features used are: "Cancer_Type2", "Albumin", "HED", "TMB", "FCNA", "BMI", "NLR", "Platelets", "HGB", "Stage (1:IV; 0:I-III)", "Age", "Drug (1:Combo; 0:PD1/PDL1orCTLA4)", "Chemo_before_IO (1:Yes; 0:No)","HLA_LOH", "MSI (1:Unstable; 0:Stable_Indeterminate)", "Sex (1:Male; 0:Female)"
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
89
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
90 **Input file**
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
91
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
92 Provide a tabular file (as tabular or csv or xlsx) containing all the features as mentioned above.
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
93
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
94 **Output file**
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
95
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
96 Returns predicted data as a tabular file - the predictions are concatenated as a last column of the test data.
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
97
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
98 ]]>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
99 </help>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
100 <citations>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
101 <citation type="bibtex">
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
102 @ARTICLE{BIOMD0000001066,
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
103 Author = {Chowell D and et al.},
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
104 title = {{Chowell2022 - Random Forest model to predict efficacy of immune checkpoint blockade across multiple cancer patient cohorts}},
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
105 url = {https://www.ebi.ac.uk/biomodels/BIOMD0000001066}
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
106 }
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
107 </citation>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
108 </citations>
1748c5d74df5 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML commit cffacdd593bbb69ea96cfd89e8062b17984451e5
bgruening
parents:
diff changeset
109 </tool>