#Use input file with format "chrom start end sample cell class scalar num_bins sv_call_name sv_call_haplotype sv_call_name_2nd sv_call_haplotype_2nd llr_to_ref llr_to_2nd"
#Use input file with format "chrom start end sample cell class scalar num_bins sv_call_name sv_call_haplotype sv_call_name_2nd sv_call_haplotype_2nd llr_to_ref llr_to_2nd af"
#
# e.g.
#
...
...
@@ -27,7 +27,7 @@ open FH, "$input_file" or die;
while(<FH>){
chomp;
nextif($_=~/^chrom/);#ignore first line
my($chrom,$start,$end,$sample,$cell,$strand_state_class,$scalar,$num_bins,$sv_call_name,$sv_call_haplotype,$sv_call_name_2nd,$sv_call_haplotype_2nd,$llr_to_ref,$llr_to_2nd)=split(/\t/,$_);#split by TAB
my($chrom,$start,$end,$sample,$cell,$strand_state_class,$scalar,$num_bins,$sv_call_name,$sv_call_haplotype,$sv_call_name_2nd,$sv_call_haplotype_2nd,$llr_to_ref,$llr_to_2nd,$af)=split(/\t/,$_);#split by TAB