starChimeric.Rd
This function executes STAR to detect chimeric transcripts
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 number indicating the number of cores to be used from the application
is a positive integer indicating the minimal length of the overlap of a read to the chimeric element
is a positive integer indicating the minimum overhang for a chimeric junction
the set of chimeric transcripts identified by STAR chimeric
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 star2step nostrand pe
starChimeric(group="docker",fastq.folder=getwd(), scratch.folder="/data/scratch",
genome.folder="/data/scratch/hg38star", threads=8, chimSegmentMin=20, chimJunctionOverhangMin=15)
}