# HG changeset patch # User iuc # Date 1712062794 0 # Node ID 9a7c5b6d8f1ea8aad462363cbc0c55fadf325ccb # Parent df929f2571796b8d47d1f3ee7117389f26e5caf0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseq commit 0ccfadf8ac4bc6514836c4efe6f605973a08d1ed diff -r df929f257179 -r 9a7c5b6d8f1e dexseq.R --- a/dexseq.R Tue Apr 04 08:25:51 2023 +0000 +++ b/dexseq.R Tue Apr 02 12:59:54 2024 +0000 @@ -16,8 +16,8 @@ options(stringAsfactors = FALSE, useFancyQuotes = FALSE) args <- commandArgs(trailingOnly = TRUE) -#get options, using the spec as defined by the enclosed list. -#we read the options from the default: commandArgs(TRUE). +# get options, using the spec as defined by the enclosed list. +# we read the options from the default: commandArgs(TRUE). spec <- matrix(c( "verbose", "v", 2, "integer", "help", "h", 0, "logical", @@ -109,7 +109,7 @@ export_table <- as.data.frame(res_sorted) last_column <- ncol(export_table) for (i in seq_len(nrow(export_table))) { - export_table[i, last_column] <- paste(export_table[i, last_column][[1]], collapse = ", ") + export_table[i, last_column] <- paste(export_table[i, last_column][[1]], collapse = ", ") } export_table[, c(last_column)] <- sapply(export_table[, c(last_column)], as.character) write.table(export_table, file = opt$outfile, sep = "\t", quote = FALSE, row.names = FALSE, col.names = FALSE) diff -r df929f257179 -r 9a7c5b6d8f1e dexseq_count.xml --- a/dexseq_count.xml Tue Apr 04 08:25:51 2023 +0000 +++ b/dexseq_count.xml Tue Apr 02 12:59:54 2024 +0000 @@ -16,18 +16,20 @@ - + - + diff -r df929f257179 -r 9a7c5b6d8f1e macros.xml --- a/macros.xml Tue Apr 04 08:25:51 2023 +0000 +++ b/macros.xml Tue Apr 02 12:59:54 2024 +0000 @@ -1,12 +1,11 @@ - - 1.44 + 1.48.0 0 22.01 bioconductor-dexseq - r-getopt + r-getopt r-rjson diff -r df929f257179 -r 9a7c5b6d8f1e plotdexseq.R --- a/plotdexseq.R Tue Apr 04 08:25:51 2023 +0000 +++ b/plotdexseq.R Tue Apr 02 12:59:54 2024 +0000 @@ -14,8 +14,8 @@ options(stringAsfactors = FALSE, useFancyQuotes = FALSE) args <- commandArgs(trailingOnly = TRUE) -#get options, using the spec as defined by the enclosed list. -#we read the options from the default: commandArgs(TRUE). +# get options, using the spec as defined by the enclosed list. +# we read the options from the default: commandArgs(TRUE). spec <- matrix(c( "rdata", "r", 1, "character", "primaryfactor", "p", 1, "character", @@ -40,10 +40,12 @@ pdf("plot.pdf") for (i in genes) { - plotDEXSeq(res, i, FDR = opt$fdr, fitExpToVar = opt$primaryfactor, + plotDEXSeq(res, i, + FDR = opt$fdr, fitExpToVar = opt$primaryfactor, norCounts = opt$normcounts, expression = TRUE, splicing = opt$splicing, displayTranscripts = opt$transcripts, names = opt$names, legend = TRUE, - color = NULL, color.samples = NULL, transcriptDb = NULL) + color = NULL, color.samples = NULL, transcriptDb = NULL + ) } dev.off()