Mercurial > repos > artbio > gsc_scran_normalize
annotate scran-normalize.R @ 0:252eded61848 draft
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
| author | artbio | 
|---|---|
| date | Thu, 26 Sep 2019 10:50:55 -0400 | 
| parents | |
| children | fb2f1b8b0013 | 
| rev | line source | 
|---|---|
| 0 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 1 # load packages that are provided in the conda env | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 2 options( show.error.messages=F, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 3 error = function () { cat( geterrmessage(), file=stderr() ); q( "no", 1, F ) } ) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 4 loc <- Sys.setlocale("LC_MESSAGES", "en_US.UTF-8") | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 5 warnings() | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 6 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 7 library(optparse) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 8 library(scran) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 9 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 10 #Arguments | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 11 option_list = list( | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 12 make_option( | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 13 c("-d", "--data"), | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 14 default = NA, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 15 type = 'character', | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 16 help = "Input file that contains count values to transform" | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 17 ), | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 18 make_option( | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 19 c("-s", "--sep"), | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 20 default = '\t', | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 21 type = 'character', | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 22 help = "File separator [default : '%default' ]" | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 23 ), | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 24 make_option( | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 25 "--cluster", | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 26 default=FALSE, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 27 action="store_true", | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 28 type = 'logical', | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 29 help = "Whether to calculate the size factor per cluster or on all cell" | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 30 ), | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 31 make_option( | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 32 c("-m", "--method"), | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 33 default = 'hclust', | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 34 type = 'character', | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 35 help = "The clustering method to use for grouping cells into cluster : hclust or igraph [default : '%default' ]" | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 36 ), | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 37 make_option( | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 38 "--size", | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 39 default = 100, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 40 type = 'integer', | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 41 help = "Minimal number of cells in each cluster : hclust or igraph [default : '%default' ]" | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 42 ), | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 43 make_option( | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 44 c("-o", "--out"), | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 45 default = "res.tab", | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 46 type = 'character', | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 47 help = "Output name [default : '%default' ]" | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 48 ) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 49 ) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 50 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 51 opt = parse_args(OptionParser(option_list = option_list), | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 52 args = commandArgs(trailingOnly = TRUE)) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 53 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 54 if (opt$sep == "tab") {opt$sep = "\t"} | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 55 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 56 data = read.table( | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 57 opt$data, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 58 check.names = FALSE, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 59 header = TRUE, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 60 row.names = 1, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 61 sep = opt$sep | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 62 ) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 63 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 64 ## Import data as a SingleCellExperiment object | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 65 sce <- SingleCellExperiment(list(counts=as.matrix(data))) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 66 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 67 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 68 if(opt$cluster){ | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 69 clusters <- quickCluster(sce, min.size = opt$size, method = opt$method) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 70 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 71 ## Compute sum factors | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 72 sce <- computeSumFactors(sce, cluster = clusters) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 73 } else { | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 74 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 75 ## Compute sum factors | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 76 sce <- computeSumFactors(sce) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 77 } | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 78 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 79 sce <- normalize(sce) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 80 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 81 logcounts <- data.frame(genes = rownames(sce), round(logcounts(sce), digits=5), check.names = F) | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 82 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 83 | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 84 write.table( | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 85 logcounts, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 86 opt$out, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 87 col.names = T, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 88 row.names = F, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 89 quote = F, | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 90 sep = "\t" | 
| 
252eded61848
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_scran_normalize commit ddcf915dd9b690d7f3876e08b939adde36cbb8dd"
 artbio parents: diff
changeset | 91 ) | 
