-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkb_ReadSim.spec
More file actions
42 lines (39 loc) · 1.23 KB
/
kb_ReadSim.spec
File metadata and controls
42 lines (39 loc) · 1.23 KB
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
33
34
35
36
37
38
39
40
41
42
/*
A KBase module: kb_ReadSim
*/
module kb_ReadSim {
typedef structure {
string report_name;
string report_ref;
} ReportResults;
typedef structure {
string workspace_name;
string input_sample_set;
string strain_info;
string assembly_or_genome_ref;
string base_error_rate;
string outer_distance;
string standard_deviation;
string num_read_pairs;
string len_first_read;
string len_second_read;
string mutation_rate;
string frac_indels;
string variation_object_name;
string output_read_object;
} Inparams;
/*
This example function accepts any number of parameters and returns results in a KBaseReport
*/
funcdef run_kb_ReadSim(Inparams params) returns (ReportResults output) authentication required;
typedef structure {
string workspace_name;
string varobject_ref1;
string varobject_ref2;
string output_variant_object;
} Evalparams;
/*
This example function accepts any number of parameters and returns results in a KBaseReport
*/
funcdef run_eval_variantcalling(Evalparams params) returns (ReportResults output) authentication required;
};