star.Rd
This function executes the two steps STAR as sugested by best practice GATK for calling variants on RNAseq data only PE data are accepted
a character string. Two options: "sudo"
or "docker"
, depending to which group the user belongs
a character string indicating where gzip fastq files are located
a character string indicating the scratch folder where docker container will be mounted
a character string indicating the folder where the indexed reference genome for STAR is located.
a character string to be inserted in the bam as identifier for the sample
a number indicating the number of cores to be used from the application
a number indicating version in use
three files: sorted_reads.bam, which is sorted and duplicates marked bam file, sort_reads.bai, and sort_reads.stats, which provides mapping statistics
if (FALSE) {
#downloading fastq files
system("wget http://130.192.119.59/public/test_R1.fastq.gz")
system("wget http://130.192.119.59/public/test_R2.fastq.gz")
#running star nostrand pe
star(group="docker",fastq.folder=getwd(), scratch.folder="/data/scratch",
genome.folder="/data/scratch/hg38star", groupid="test", threads=12)
}