Mercurial > repos > artbio > gsc_center_scale
annotate center_scale.R @ 1:a96cc346819c draft
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit 7865eb7eb9d862e9967fe519d28df705d973fbaf
author | artbio |
---|---|
date | Fri, 12 Jul 2019 11:44:50 -0400 |
parents | bcbd7179d8ec |
children | 163befe5f05b |
rev | line source |
---|---|
0
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
1 options( show.error.messages=F, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
2 error = function () { cat( geterrmessage(), file=stderr() ); q( "no", 1, F ) } ) |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
3 loc <- Sys.setlocale("LC_MESSAGES", "en_US.UTF-8") |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
4 warnings() |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
5 library(optparse) |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
6 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
7 # Arguments |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
8 option_list = list( |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
9 make_option( |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
10 '--data', |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
11 default = NA, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
12 type = 'character', |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
13 help = "Input file that contains values to transform. Must be tabular separated, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
14 with columns and row names, variables in rows, observations in columns [default : '%default' ]" |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
15 ), |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
16 make_option( |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
17 '--center', |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
18 default = TRUE, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
19 type = 'logical', |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
20 help = "center data to the mean [default : '%default' ]" |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
21 ), |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
22 make_option( |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
23 '--scale', |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
24 default = TRUE, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
25 type = 'logical', |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
26 help = "scale data to standard deviation [default : '%default' ]" |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
27 ), |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
28 make_option( |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
29 '--factor', |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
30 default = '', |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
31 type = 'character', |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
32 help = "A two-column observations|factor_levels table, to group observations to be transformed by levels [default : '%default' ]" |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
33 ), |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
34 make_option( |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
35 '--output', |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
36 default = 'res.tab', |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
37 type = 'character', |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
38 help = "Table of transformed values [default : '%default' ]" |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
39 ) |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
40 ) |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
41 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
42 transform <- function(df, center=TRUE, scale=TRUE) { |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
43 transfo <- scale( |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
44 t(df), |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
45 center=center, |
1
a96cc346819c
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit 7865eb7eb9d862e9967fe519d28df705d973fbaf
artbio
parents:
0
diff
changeset
|
46 scale=scale |
0
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
47 ) |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
48 return(as.data.frame(t(transfo))) |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
49 } |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
50 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
51 opt = parse_args(OptionParser(option_list = option_list), |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
52 args = commandArgs(trailingOnly = TRUE)) |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
53 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
54 data = read.table( |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
55 opt$data, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
56 check.names = FALSE, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
57 header = TRUE, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
58 row.names = 1, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
59 sep = '\t' |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
60 ) |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
61 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
62 if (opt$factor != '') { |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
63 data.factor = read.table( |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
64 opt$factor, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
65 check.names = FALSE, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
66 header = TRUE, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
67 sep = '\t' |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
68 ) |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
69 colnames(data.factor) <- c("cellid", "level") |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
70 data.transformed <- data.frame(row.names=rownames(data), stringsAsFactors=FALSE) |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
71 for (group in levels(data.factor$level)){ |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
72 subcells <- as.data.frame(subset(data.factor, level==group, select=cellid)) |
1
a96cc346819c
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit 7865eb7eb9d862e9967fe519d28df705d973fbaf
artbio
parents:
0
diff
changeset
|
73 subdata <- as.data.frame(subset(data, select=as.vector(subcells$cellid))) |
a96cc346819c
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit 7865eb7eb9d862e9967fe519d28df705d973fbaf
artbio
parents:
0
diff
changeset
|
74 subdata.transformed <- transform(subdata, center=as.logical(opt$center), |
a96cc346819c
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit 7865eb7eb9d862e9967fe519d28df705d973fbaf
artbio
parents:
0
diff
changeset
|
75 scale=as.logical(opt$scale)) |
0
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
76 data.transformed <- cbind(data.transformed, subdata.transformed) |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
77 } |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
78 } else { |
1
a96cc346819c
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit 7865eb7eb9d862e9967fe519d28df705d973fbaf
artbio
parents:
0
diff
changeset
|
79 data.transformed <- transform(data, center=as.logical(opt$center), |
a96cc346819c
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit 7865eb7eb9d862e9967fe519d28df705d973fbaf
artbio
parents:
0
diff
changeset
|
80 scale=as.logical(opt$scale)) |
0
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
81 } |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
82 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
83 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
84 write.table( |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
85 cbind(gene=rownames(data.transformed), data.transformed), |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
86 opt$output, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
87 col.names = TRUE, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
88 row.names = FALSE, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
89 quote = F, |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
90 sep = "\t" |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
91 ) |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
92 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
93 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
94 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
95 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
96 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
97 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
98 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
99 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
100 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
101 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
102 |
bcbd7179d8ec
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_center_scale commit b839b440f0760ff9cd75969d418432702947a669
artbio
parents:
diff
changeset
|
103 |