-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkb_transformData.spec
More file actions
32 lines (27 loc) · 821 Bytes
/
kb_transformData.spec
File metadata and controls
32 lines (27 loc) · 821 Bytes
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
/*
A KBase module: kb_transformData
*/
module kb_transformData {
/*
KBase style object reference X/Y/Z to a
@id ws KBaseExperiments.AttributeMapping
*/
typedef string trait_mapping;
typedef structure {
string workspace_name;
string workspace_id;
string transform_type;
trait_mapping phenotype_data;
list<mapping<string, string>> attributes_to_filter;
int round_degree;
string new_file_name;
} transformDataInput;
typedef structure {
string report_name;
string report_ref;
} ReportResults;
/*
This example function accepts any number of parameters and returns results in a KBaseReport
*/
funcdef run_kb_transformData(transformDataInput params) returns (ReportResults output) authentication required;
};