# HG changeset patch # User iuc # Date 1518680099 18000 # Node ID 73281fbdf6c1266d750e6f24c50ae9da75351706 # Parent a8a083193440cf445e67bc2329afd10d22924986 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/egsea commit 225518a08941e7ef8e5c402e3696ec5fa6e592a0 diff -r a8a083193440 -r 73281fbdf6c1 egsea.R --- a/egsea.R Thu Jan 25 02:23:23 2018 -0500 +++ b/egsea.R Thu Feb 15 02:34:59 2018 -0500 @@ -50,13 +50,14 @@ make_option(c("-base_methods", "--base_methods"), type="character", help="Gene set testing methods"), make_option(c("-msigdb", "--msigdb"), type="character", help="MSigDB Gene Set Collections"), make_option(c("-keggdb", "--keggdb"), type="character", help="KEGG Pathways"), + make_option(c("-keggupdated", "--keggupdated"), type="logical", help="Use updated KEGG"), make_option(c("-gsdb", "--gsdb"), type="character", help = "GeneSetDB Gene Sets"), make_option(c("-display_top", "--display_top"), type="integer", help = "Number of top Gene Sets to display"), make_option(c("-min_size", "--min_size"), type="integer", help = "Minimum Size of Gene Set"), make_option(c("-fdr_cutoff", "--fdr_cutoff"), type="double", help = "FDR cutoff"), make_option(c("-combine_method", "--combine_method"), type="character", help="Method to use to combine the p-values"), make_option(c("-sort_method", "--sort_method"), type="character", help="Method to sort the results"), - make_option(c("-rdata", "--rdaOpt"), type="character", help="Output RData file") + make_option(c("-rdaOpt", "--rdaOpt"), type="character", help="Output RData file") ) parser <- OptionParser(usage = "%prog [options] file", option_list=option_list) @@ -188,10 +189,9 @@ gsdb <- "none" } - ## Index gene sets -gs.annots <- buildIdx(entrezIDs=rownames(counts), species=args$species, msigdb.gsets=msigdb, gsdb.gsets=gsdb, kegg.exclude=kegg_exclude) +gs.annots <- buildIdx(entrezIDs=rownames(counts), species=args$species, msigdb.gsets=msigdb, gsdb.gsets=gsdb, kegg.exclude=kegg_exclude, kegg.updated=args$keggupdated) ## Run egsea.cnt @@ -201,6 +201,6 @@ ## Output RData file -if (!is.null(args$rdata)) { +if (!is.null(args$rdaOpt)) { save.image(file = "EGSEA_analysis.RData") } \ No newline at end of file diff -r a8a083193440 -r 73281fbdf6c1 egsea.xml --- a/egsea.xml Thu Jan 25 02:23:23 2018 -0500 +++ b/egsea.xml Thu Feb 15 02:34:59 2018 -0500 @@ -1,12 +1,14 @@ - + easy and efficient ensemble gene set testing bioconductor-egsea r-optparse r-rjson + + r-statmod /dev/null | grep -v -i "WARNING: ")", optparse version" $(R --vanilla --slave -e "library(optparse); cat(sessionInfo()\$otherPkgs\$optparse\$Version)" 2> /dev/null | grep -v -i "WARNING: ")", rjson version" $(R --vanilla --slave -e "library(rjson); cat(sessionInfo()\$otherPkgs\$rjson\$Version)" 2> /dev/null | grep -v -i "WARNING: ") +echo $(R --version | grep version | grep -v GNU)", EGSEA version" $(R --vanilla --slave -e "library(EGSEA); cat(sessionInfo()\$otherPkgs\$EGSEA\$Version)" 2> /dev/null | grep -v -i "WARNING: ")", optparse version" $(R --vanilla --slave -e "library(optparse); cat(sessionInfo()\$otherPkgs\$optparse\$Version)" 2> /dev/null | grep -v -i "WARNING: ")", rjson version" $(R --vanilla --slave -e "library(rjson); cat(sessionInfo()\$otherPkgs\$rjson\$Version)" 2> /dev/null | grep -v -i "WARNING: ")", statmod version" $(R --vanilla --slave -e "library(statmod); cat(sessionInfo()\$otherPkgs\$statmod\$Version)" 2> /dev/null | grep -v -i "WARNING: ") ]]> Signalling pathways +
@@ -259,7 +263,7 @@ - + @@ -338,6 +342,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +