Open plbngl opened 6 years ago
Please try following code (which works for me) if one sample for each individual: ase.dat <- UnionExtractFields(fileNames) ase.dat.gt <- PrepForGenotyping(ase.dat, min.coverage=5) str(ase.dat.gt) ase.dat.gt$ref <- as.matrix(ase.dat.gt$ref); colnames(ase.dat.gt$ref) <- c("Sample") ase.dat.gt$alt <- as.matrix(ase.dat.gt$alt); colnames(ase.dat.gt$alt) <- c("Sample") sample.names <- colnames(ase.dat.gt$ref)
Hello, does quasar work even if there is only one bam file? How would the workflow work? Thank you!!