Skip to content
Snippets Groups Projects
Commit 8b0ebe4b authored by Ian Longden's avatar Ian Longden
Browse files

mapping problem fix

parent 21bca3ca
No related branches found
No related tags found
No related merge requests found
......@@ -1418,7 +1418,7 @@ sub fetch_normalized_slice_projection {
push( @syms, [ $hap_start, $hap_end, $sort_haps[0][2], $chr_start, $chr_end+$diff] );
}
elsif($diff < 0){
push( @syms, [ $hap_start, $hap_end+$diff, $sort_haps[0][2], $chr_start, $chr_end] );
push( @syms, [ $hap_start, $hap_end - $diff, $sort_haps[0][2], $chr_start, $chr_end] );
}
else{
push( @syms, [ $hap_start, $hap_end, $sort_haps[0][2], $chr_start, $chr_end] );
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment