From bfc58c70fadda5ac42a98954c2a900527375cd5c Mon Sep 17 00:00:00 2001 From: ebanks Date: Fri, 7 May 2010 13:08:08 +0000 Subject: [PATCH] Adding newline git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3322 348d0f76-0448-11de-a6fe-93d51630548a --- perl/liftOverVCF.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl/liftOverVCF.pl b/perl/liftOverVCF.pl index b38a379ff..05f9cb67f 100755 --- a/perl/liftOverVCF.pl +++ b/perl/liftOverVCF.pl @@ -21,7 +21,7 @@ GetOptions( "vcf=s" => \$in, "tmp=s" => \$tmp); if ( !$in || !$gatk || !$chain || !$newRef || !$oldRef || !$out ) { - print "Usage: liftOverVCF.pl\n\t-vcf \t\t\n\t-gatk \t\t\n\t-chain \t\t\n\t-newRef \t\n\t-oldRef \t\n\t-out \t\t\n\t-tmp "; + print "Usage: liftOverVCF.pl\n\t-vcf \t\t\n\t-gatk \t\t\n\t-chain \t\t\n\t-newRef \t\n\t-oldRef \t\n\t-out \t\t\n\t-tmp \n"; print "Example: ./liftOverVCF.pl\n\t-vcf /humgen/gsa-hpprojects/GATK/data/Comparisons/Validated/1kg_snp_validation/all_validation_batches.b36.vcf\n\t-chain b36ToHg19.broad.over.chain\n\t-out lifted.hg19.vcf\n\t-gatk /humgen/gsa-scr1/ebanks/Sting_dev\n\t-newRef /seq/references/Homo_sapiens_assembly19/v0/Homo_sapiens_assembly19\n\t-oldRef /broad/1KG/reference/human_b36_both\n"; exit(1); }