Hey everyone!!
I am trying to build a package for RNA-seq analysis combining different existing packages in bioconductor and am facing problem while trying to build and reload the package.
There is no error but a warning saying
testing.R:14: @example /home/disc/testing/fqcR() doesn't exist
I am using roxygen2 version 6.0.1 for documentation. there is no other error as such and the help file is also generated but no example is present.
Below is a part of testing.R script
#'@example
#'
#'fqcR()
#'
fqcR <- function ()
{
dir.create("results/Fastqc")
files <- list.files("data/", pattern =".fastq.gz", full.names = TRUE)
.
It would be very helpful if anyone could suggest, where I am going wrong and how to correct it.
Thanks in advance