mixcr.Rd
This function creates mixcrFiles from bulk TCRseq
mixcr(
group = c("sudo", "docker"),
scratch.folder,
fastqPath,
resFolderCustom = "NULL"
)
a character string. Two options: sudo or docker, depending to which group the user belongs
a character string indicating the path of the scratch folder
Path of fastq folder
optional parameter. Default will store the results in fastqPath otherwise will store the results in resFolderCustom path.
a formatted mixcr file
if (FALSE) {
library(rCASC)
dir.create("scratch")
scratch.folder=paste(getwd(),"scratch",sep="/")
fastqPath=paste(getwd(),"fastq",sep="/")
resFolder=paste(getwd(),"resFolder",sep="/")
dir.create(resFolder)
mixcr(group="docker",scratch.folder=scratch.folder,fastqPath=fastqPath,resFolderCustom=resFolder)
}