Updated to reflect Mark's renaming binge
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3697 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
5f2b2d860e
commit
15a6be5d50
|
|
@ -34,7 +34,7 @@ my $unsorted_vcf = "$tmp_prefix.unsorted.vcf";
|
||||||
|
|
||||||
# lift over the file
|
# lift over the file
|
||||||
print "Lifting over the vcf...";
|
print "Lifting over the vcf...";
|
||||||
my $cmd = "java -jar $gatk/dist/GenomeAnalysisTK.jar -T LiftoverVCF -R $oldRef.fasta -B vcf,vcf,$in -o $unsorted_vcf -chain $chain -dict $newRef.dict";
|
my $cmd = "java -jar $gatk/dist/GenomeAnalysisTK.jar -T LiftoverVariants -R $oldRef.fasta -B vcf,vcf,$in -o $unsorted_vcf -chain $chain -dict $newRef.dict";
|
||||||
system($cmd);
|
system($cmd);
|
||||||
|
|
||||||
# we need to sort the lifted over file now
|
# we need to sort the lifted over file now
|
||||||
|
|
@ -61,7 +61,7 @@ close(SORTED);
|
||||||
|
|
||||||
# Filter the VCF for bad records
|
# Filter the VCF for bad records
|
||||||
print "\nFixing/removing bad records...\n";
|
print "\nFixing/removing bad records...\n";
|
||||||
$cmd = "java -jar $gatk/dist/GenomeAnalysisTK.jar -T FilterLiftedVCF -R $newRef.fasta -B vcf,vcf,$sorted_vcf -o $out";
|
$cmd = "java -jar $gatk/dist/GenomeAnalysisTK.jar -T FilterLiftedVariants -R $newRef.fasta -B vcf,vcf,$sorted_vcf -o $out";
|
||||||
system($cmd);
|
system($cmd);
|
||||||
|
|
||||||
# clean up
|
# clean up
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue