fix the script!
This commit is contained in:
parent
810996cfca
commit
87a63d54d6
|
|
@ -63,10 +63,10 @@ class VcfToPed extends QScript {
|
|||
toPed.dbsnp = dbsnp
|
||||
toPed.variant = variants
|
||||
toPed.metaData = meta
|
||||
lazy val base : String = bed.getName.stripSuffix(".bed")+"_%".format(chunk)
|
||||
lazy val tBed = new File(tmpdir,base+".bed")
|
||||
lazy val bim = new File(tmpdir,base+".bim")
|
||||
lazy val fam = new File(tmpdir,base+".fam")
|
||||
val base : String = bed.getName.stripSuffix(".bed")+"_%d".format(chunk)
|
||||
val tBed = new File(tmpdir,base+".bed")
|
||||
val bim = new File(tmpdir,base+".bim")
|
||||
val fam = new File(tmpdir,base+".fam")
|
||||
toPed.bed = tBed
|
||||
toPed.bim = bim
|
||||
toPed.fam = fam
|
||||
|
|
@ -89,10 +89,10 @@ class VcfToPed extends QScript {
|
|||
toPed.dbsnp = dbsnp
|
||||
toPed.variant = variants
|
||||
toPed.metaData = meta
|
||||
lazy val base : String = bed.getName.stripSuffix(".bed")+"_%".format(chunk)
|
||||
lazy val tBed = new File(tmpdir,base+".bed")
|
||||
lazy val bim = new File(tmpdir,base+".bim")
|
||||
lazy val fam = new File(tmpdir,base+".fam")
|
||||
val base : String = bed.getName.stripSuffix(".bed")+"_%d".format(chunk)
|
||||
val tBed = new File(tmpdir,base+".bed")
|
||||
val bim = new File(tmpdir,base+".bim")
|
||||
val fam = new File(tmpdir,base+".fam")
|
||||
toPed.bed = tBed
|
||||
toPed.bim = bim
|
||||
toPed.fam = fam
|
||||
|
|
|
|||
Loading…
Reference in New Issue