mirnaCounts.Rd
This function executes the docker container mrna8, which allows miRNAs counting.
a character string. Two options: "sudo"
or "docker"
, depending to which group the user belongs
a character string indicating where mirna fastq are located
a character string indicating the scratch folder where docker container will be mounted
a character string indicating the mirbase prefix for the organism of interest, e.g. hsa for human or mmu for mouse
a boolean logical variable indicating if the latest mirbase database will be downloaded or the local mirbase 21 will be used. Default is FALSE
a character string. Two options: "ILLUMINA"
or "NEB"
, depending to which miRNA library prep was used: ILLUMINA or NEB
a boolean logical variable indicating if trimmed fastq are saved. Default is FALSE
one file: annotated_genes.results, which is the annotated version of gene.results.
if (FALSE) {
system("wget 130.192.119.59/public/test.mirnaCounts.zip")
unzip("test.mirnaCounts.zip")
setwd("test.mirnaCounts")
library(docker4seq)
mirnaCounts(group="docker",fastq.folder=getwd(),
scratch.folder="/data/scratch",
mirbase.id="hsa",download.status=FALSE,
adapter.type="NEB", trimmed.fastq=FALSE)
}