Unfortunately need to bump up memory needed for liftover to get Omni file sorted
This commit is contained in:
parent
359090c4b7
commit
6e9b8559d8
|
|
@ -320,7 +320,7 @@ class GATKResourcesBundle extends QScript {
|
||||||
}
|
}
|
||||||
|
|
||||||
class LiftOverPerl(@Input val in: File, @Output val out: File, @Input val chain: File, oldRef: Reference, newRef: Reference) extends CommandLineFunction {
|
class LiftOverPerl(@Input val in: File, @Output val out: File, @Input val chain: File, oldRef: Reference, newRef: Reference) extends CommandLineFunction {
|
||||||
this.memoryLimit = 8
|
this.memoryLimit = 12
|
||||||
def commandLine = ("%s -vcf %s -chain %s -out %s " +
|
def commandLine = ("%s -vcf %s -chain %s -out %s " +
|
||||||
"-gatk ./ -newRef %s -oldRef %s -tmp %s").format(liftOverPerl, in.getAbsolutePath, chain,
|
"-gatk ./ -newRef %s -oldRef %s -tmp %s").format(liftOverPerl, in.getAbsolutePath, chain,
|
||||||
out.getAbsolutePath, newRef.file.replace(".fasta", ""),
|
out.getAbsolutePath, newRef.file.replace(".fasta", ""),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue