rsemstarUscsIndex.Rd
This function executes the docker container rsem-star1 where RSEM and STAR are installed. The index is created using ENSEMBL genome fasta file. User needs to provide the URL for ENSEMBL genome located in the ENSEMBL ftp
a character string. Two options: "sudo"
or "docker"
, depending to which group the user belongs
a character string indicating the folder where the indexed reference genome will be located
a character string indicating the URL from uscs download web page for the unmasked genome sequence of interest
a character string indicating the path of the GTF file for genome of interest
a character string indicating the URL from uscs download web page for the knowisoforms file for genome of interest
a character string indicating the URL from uscs download web page for the knownToLocusLink file for genome of interest
a number indicating the number of cores to be used from the application
The indexed genome reference sequence
if (FALSE) {
#running rsemstar index for human
rsemstarUscsIndex(group="sudo",genome.folder="/data/scratch/hg19UCSCstar",
uscs.urlgenome=
"http://hgdownload.soe.ucsc.edu/goldenPath/hg19/bigZips/chromFa.tar.gz",
uscs.gtf=
"/Users/raffaelecalogero/Desktop/hg19_ucsc.gtf.gz",
uscs.urlknownIsoforms=
"http://hgdownload.soe.ucsc.edu/goldenPath/hg19/database/knownIsoforms.txt.gz",
uscs.urlknownToLocusLink=
"http://hgdownload.soe.ucsc.edu/goldenPath/hg19/database/knownToLocusLink.txt.gz",
threads=24)
}