convert DEseq2 R code to html
1
0
Entering edit mode
@mariamari693693-12007
Last seen 6.5 years ago

I would like to convert R  codes  R codes in /DESeq2/R/  to HTML, but after conversion \code{\link{...}} are ignored. Would you please let me know I can convert them properly?

deseq2 • 1.2k views
ADD COMMENT
0
Entering edit mode
@mikelove
Last seen 3 hours ago
United States

hi,

A PDF of the manual is here (which can be found on the package landing page):

https://bioconductor.org/packages/release/bioc/manuals/DESeq2/man/DESeq2.pdf

https://bioconductor.org/packages/DESeq2

To obtain the R help files in HTML format, you can use:

help(package="DESeq2", help_type="html")

To get an individual function as pdf you can do:

library(DESeq2)
help(results, help_type="pdf")
ADD COMMENT
0
Entering edit mode

Hi,
Thanks for your reply. Accually, I would like to convert the codes in DESeq2/R dirrectoy like core.R, ...

############################################################
#
# DESeq2 organization of R files
#
# core.R ......... most of the statistical code (example call below)
# methods.R ...... the S4 methods (estimateSizeFactors, etc.)
# AllClasses.R ... class definitions and object constructors
# AllGenerics.R .. the generics defined in DESeq2
# results.R ...... results() function and helpers
# plots.R ........ all plotting functions
# helper.R ....... collapseReplicates, fpkm, fpm, DESeqParallel
# expanded.R ..... helpers for dealing with expanded model matrices
# RcppExports.R .. the R wrappers for the C++ functions
# rlogTransformation.R
# varianceStabilizingTransformation.R
#
# general outline of the internal function calls.
# note: not all of these functions are exported.
#
# DESeq
# |- estimateSizeFactors
#    |- estimateSizeFactorsForMatrix
# |- estimateDispersions
#    |- estimateDispersionsGeneEst
#       |- fitNbinomGLMs
#          |- fitBeta (C++)
#       |- fitDisp (C++)
#    |- estimateDispersionsFit
#    |- estimateDispersionsMAP
#       |- estimateDispersionPriorVar
#       |- fitDisp (C++)
# |- nbinomWaldTest
#    |- fitGLMsWithPrior
#       |- fitNbinomGLMs
#          |- fitBeta (C++)
#       |- estimateBetaPriorVar
#       |- fitNbinomGLMs
#          |- fitBeta (C++)
#
############################################################

#' DESeq2 package for differential analysis of count data
#'
#' The main functions for differential analysis are \code{\link{DESeq}} and
#' \code{\link{results}}. See the examples at \code{\link{DESeq}} for basic analysis steps.
#' Two transformations offered for count data are
#' the "regularized logarithm", \code{\link{rlog}},
#' and \code{\link{varianceStabilizingTransformation}}.
#' For more detailed information on usage, see the package vignette, by typing
#' \code{vignette("DESeq2")}, or the workflow linked to on the first page
#' of the vignette. All support questions should be posted to the Bioconductor
#' support site: \url{http://support.bioconductor.org}.
#'
#' @references
#'
#' DESeq2 reference:
#'
#' Michael I Love, Wolfgang Huber, Simon Anders: Moderated estimation of fold change and dispersion for RNA-seq data with DESeq2. Genome Biology 2014, 15:550. \url{http://dx.doi.org/10.1186/s13059-014-0550-8}
#'
#' DESeq reference:
#'
#' Simon Anders, Wolfgang Huber: Differential expression analysis for sequence count data. Genome Biology 2010, 11:106. \url{http://dx.doi.org/10.1186/gb-2010-11-10-r106}
#'
#' @author Michael Love, Wolfgang Huber, Simon Anders
#'
#' @docType package
#' @name DESeq2-package
#' @aliases DESeq2-package
#' @keywords package
NULL

 

ADD REPLY
0
Entering edit mode

There's no way to convert that nicely to PDF/HTML

It's a mix of code, comments and Roxygen.

ADD REPLY
0
Entering edit mode

I tried to convert to html, it was good but \code{\link{...}} were ignored ;(

ADD REPLY
0
Entering edit mode

If by 'html' you mean 'something I can read in a browser', then all this code is already 'html' at the github mirror for DESeq2.

ADD REPLY

Login before adding your answer.

Traffic: 848 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6