Skip to content

Commit

Permalink
setting up git-svn bridge
Browse files Browse the repository at this point in the history
  • Loading branch information
Bioconductor Git-SVN Bridge committed May 29, 2014
1 parent f302b54 commit 246512f
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 55 deletions.
19 changes: 0 additions & 19 deletions DEGQA.Rproj

This file was deleted.

37 changes: 12 additions & 25 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,33 +1,20 @@
Package: DEGreport
Version: 0.99.6
Version: 0.99.7
Date: 2014-05-2
Type: Package
Title: Report of DEG analysis
Description: Creation of a HTML report of differential expression analyses of count data. It integrates some of the code mentioned in DESeq2 and edgeR vignettes, and report a ranked list of genes according to the fold changes mean and variability for each selected gene.
biocViews: DifferentialExpression,
Visualization,
RNASeq,
ReportWriting
Suggests:
knitr,
biomaRt,
RUnit,
BiocStyle,
BiocGenerics
Depends:
R (>= 3.0.0),
rjags,
quantreg
Imports:
plyr,
utils,
ggplot2,
Nozzle.R1,
coda,
edgeR
SystemRequirements: jags (>= 3.0.0)
Description: Creation of a HTML report of differential expression
analyses of count data. It integrates some of the code
mentioned in DESeq2 and edgeR vignettes, and report a ranked
list of genes according to the fold changes mean and
variability for each selected gene.
biocViews: DifferentialExpression, Visualization, RNASeq, ReportWriting
Suggests: knitr, biomaRt, RUnit, BiocStyle, BiocGenerics
Depends: R (>= 3.0.0), rjags, quantreg
Imports: plyr, utils, ggplot2, Nozzle.R1, coda, edgeR
SystemRequirements: jags (>= 3.0.0)
Author: Lorena Pantano
Maintainer: Lorena Pantano <lorena.pantano@gmail.com>
License: GPL (>=2)
VignetteBuilder: knitr
Roxygen: list(wrap = TRUE)
Roxygen: list(wrap = TRUE)
3 changes: 1 addition & 2 deletions R/DEGreportSet.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#' @name DEGreportSet
#' @title list object for DE genes betwen Male and Females
#' @description list of objects containgin counts matrix,g1,g2 and edgeR glmfit
#' object
#' @description list of objects containgin counts matrix,g1,g2 and edgeR glmfit object
#' @docType data
#' @usage DEGreportSet
#' @format matrix,list,list and matrix
Expand Down
2 changes: 1 addition & 1 deletion R/methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ degBIcmd <-
#' data(DEGreportSet)
#' degRank(DEGreportSet$g1,DEGreportSet$g2,
#' DEGreportSet$counts[DEGreportSet$detag[1:5],],
#' DEGreportSet$deg[DEGreportSet$detag[1:5],1],100,300)
#' DEGreportSet$deg[DEGreportSet$detag[1:5],1],400,500)
degRank <-
function(g1,g2,counts,fc,popsize,iter=1000)
{
Expand Down
14 changes: 7 additions & 7 deletions R/report.R
Original file line number Diff line number Diff line change
Expand Up @@ -215,13 +215,13 @@ createReport <-
report <- newCustomReport( "DEG Report " );
report <- addTo(
report, addTo( newSection( "Quality of DEG", class="results" ),
addTo( newSubSection( "Pvalue vs abundance" ), fg1),
addTo( newSubSection( "Pvalue vs variation" ), fg2),
addTo( newSubSection("Pvalue vs abundance/variation"),fg3),
addTo( newSubSection( "Abundance distribution" ), fg4),
addTo( newSubSection( "Variation distribution" ), fg5),
addTo( newSubSection("Rank"), tb1),
addTo( newSubSection("FC vs rank"), fg6)
addTo( newSubSection( "Pvalue vs abundance" ), fg1),
addTo( newSubSection( "Pvalue vs variation" ), fg2),
addTo( newSubSection("Pvalue vs abundance/variation"), fg3),
addTo( newSubSection( "Abundance distribution" ), fg4),
addTo( newSubSection( "Variation distribution" ), fg5),
addTo( newSubSection("Rank"), tb1),
addTo( newSubSection("FC vs rank"), fg6)
))

writeReport( report, filename=paste0(path,name))
Expand Down
2 changes: 2 additions & 0 deletions data/datalist
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
DEGreportSet
humanSexDEedgeR
Binary file modified data/humanSexDEedgeR.rda
Binary file not shown.
2 changes: 1 addition & 1 deletion man/degRank.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ Get rank data frame with best score on the top
data(DEGreportSet)
degRank(DEGreportSet$g1,DEGreportSet$g2,
DEGreportSet$counts[DEGreportSet$detag[1:5],],
DEGreportSet$deg[DEGreportSet$detag[1:5],1],100,300)
DEGreportSet$deg[DEGreportSet$detag[1:5],1],400,500)
}

File renamed without changes.

0 comments on commit 246512f

Please sign in to comment.