indropIndex.Rd
This function executes a docker that produces as output the genome index index for bowtie
indropIndex(
group = c("sudo", "docker"),
index.folder,
ensembl.urlgenome,
ensembl.urlgtf
)
a character string. Two options: sudo or docker, depending to which group the user belongs
a character string indicating the folder where the index will be created. The index will have the prefix genome.
a character string indicating the URL from ENSEMBL ftp for the unmasked genome sequence of interest
a character string indicating the URL from ENSEMBL ftp for the GTF for genome of interest
if (FALSE) {
library(rCASC)
#running indropCounts index build
indropIndex(group="docker", index.folder=getwd(),
ensembl.urlgenome="ftp://ftp.ensembl.org/pub/release-87/fasta/mus_musculus/dna/Mus_musculus.GRCm38.dna.toplevel.fa.gz",
ensembl.urlgtf="ftp://ftp.ensembl.org/pub/release-87/gtf/mus_musculus/Mus_musculus.GRCm38.87.gtf.gz")
}