Mercurial > repos > recetox > ramclustr_xcms
annotate ramclustr_wrapper.R @ 2:e46e0a0c13ca draft
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit beda1b99934fb8254de04bb38e41eb9ce836d71d"
author | recetox |
---|---|
date | Thu, 04 Feb 2021 11:34:30 +0000 |
parents | 8f4d04ad4acd |
children | 405c8f8dc073 |
rev | line source |
---|---|
0
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
1 store_output <- function( |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
2 ramclustr_obj, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
3 output_filename, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
4 output_method_metadata, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
5 output_merge_msp, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
6 output_spec_abundance) { |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
7 save(ramclustr_obj, file = output_filename) |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
8 RAMClustR::write.methods(ramclustr_obj, output_method_metadata) |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
9 RAMClustR::write.msp(ramclustr_obj, one.file = output_merge_msp) |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
10 write.csv(ramclustr_obj$SpecAbund, file = output_spec_abundance, row.names = TRUE) |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
11 } |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
12 |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
13 ramclustr_xcms <- function( |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
14 input_xcms, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
15 sr, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
16 deep_split, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
17 block_size, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
18 mult, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
19 hmax, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
20 collapse, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
21 use_pheno, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
22 qc_inj_range, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
23 normalize, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
24 min_module_size, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
25 linkage, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
26 mzdec, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
27 cor_method, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
28 rt_only_low_n, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
29 replace_zeros, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
30 st = NULL, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
31 maxt = NULL, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
32 fftempdir = NULL |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
33 ) { |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
34 obj <- load(input_xcms) |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
35 |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
36 x <- RAMClustR::ramclustR( |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
37 xcmsObj = xdata, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
38 st = st, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
39 maxt = maxt, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
40 sr = sr, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
41 deepSplit = deep_split, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
42 blocksize = block_size, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
43 mult = mult, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
44 hmax = hmax, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
45 collapse = collapse, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
46 usePheno = use_pheno, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
47 mspout = FALSE, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
48 qc.inj.range = qc_inj_range, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
49 normalize = normalize, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
50 minModuleSize = min_module_size, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
51 linkage = linkage, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
52 mzdec = mzdec, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
53 cor.method = cor_method, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
54 rt.only.low.n = rt_only_low_n, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
55 fftempdir = fftempdir, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
56 replace.zeros = replace_zeros |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
57 ) |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
58 return(x) |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
59 } |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
60 |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
61 ramclustr_csv <- function( |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
62 ms, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
63 idmsms, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
64 sample_name_column, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
65 feature_delimiter, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
66 retention_time_column, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
67 sr, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
68 deep_split, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
69 block_size, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
70 mult, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
71 hmax, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
72 collapse, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
73 use_pheno, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
74 qc_inj_range, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
75 normalize, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
76 min_module_size, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
77 linkage, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
78 mzdec, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
79 cor_method, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
80 rt_only_low_n, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
81 replace_zeros, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
82 st = NULL, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
83 maxt = NULL, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
84 fftempdir = NULL |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
85 ) { |
1
8f4d04ad4acd
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 36ea15ec5b1f1899f28c3a92d3a55dd6ac3dffae"
recetox
parents:
0
diff
changeset
|
86 if (!file.exists(idmsms)) |
8f4d04ad4acd
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 36ea15ec5b1f1899f28c3a92d3a55dd6ac3dffae"
recetox
parents:
0
diff
changeset
|
87 idmsms <- NULL |
8f4d04ad4acd
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 36ea15ec5b1f1899f28c3a92d3a55dd6ac3dffae"
recetox
parents:
0
diff
changeset
|
88 |
0
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
89 x <- RAMClustR::ramclustR( |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
90 ms = ms, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
91 idmsms = idmsms, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
92 featdelim = feature_delimiter, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
93 timepos = retention_time_column, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
94 sampNameCol = sample_name_column, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
95 st = st, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
96 maxt = maxt, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
97 sr = sr, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
98 deepSplit = deep_split, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
99 blocksize = block_size, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
100 mult = mult, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
101 hmax = hmax, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
102 collapse = collapse, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
103 usePheno = use_pheno, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
104 mspout = FALSE, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
105 qc.inj.range = qc_inj_range, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
106 normalize = normalize, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
107 minModuleSize = min_module_size, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
108 linkage = linkage, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
109 mzdec = mzdec, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
110 cor.method = cor_method, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
111 rt.only.low.n = rt_only_low_n, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
112 fftempdir = fftempdir, |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
113 replace.zeros = replace_zeros |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
114 ) |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
115 return(x) |
a0c69d354b96
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr commit 12025c9247a7bd1afc327134623c6ae3e048fca8"
recetox
parents:
diff
changeset
|
116 } |