Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • UCSC Bin indexing system

    Does anyone know how exactly works the Bin indexing system used in the UCSC genome browser?
    I found just few words in this webpage http://genomewiki.ucsc.edu/index.php...ndexing_system
    but i'm not familiar with java and I'm not able to translate this code in perl.
    Any suggestion?
    Thanks in advance

  • #2
    See http://plindenbaum.blogspot.it/2010/...ng-genome.html (via http://www.biostars.org/post/show/95...d-by-sam-ucsc/ )

    Perl Implementation: No guarantees ...

    sub binFromRangeStandard
    {
    my $zstart;
    my $zend;
    my $i;
    my $startBin;
    my $endBin;
    my $retval;
    my @binOffsets = (512+64+8+1, 64+8+1, 8+1, 1, 0);

    $zstart = $_[0];
    $zend = $_[1];
    $startBin = $zstart;
    $endBin = $zend-1;
    $startBin = $startBin >> 17;
    $endBin = $endBin >> 17;
    for ($i=0; $i<5; $i = $i + 1){
    if ($startBin == $endBin){
    $retval = $binOffsets[$i] + $startBin ;
    return $retval;
    }

    $startBin = $startBin >> 3;
    $endBin = $endBin >> 3;
    }
    $retval = 0;
    return $retval;
    }

    Comment


    • #3
      Thanks for your help.
      I'll test it as soon as possible. Thanks again

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Genetic Variation in Immunogenetics and Antibody Diversity
        by seqadmin



        The field of immunogenetics explores how genetic variations influence immune responses and susceptibility to disease. In a recent SEQanswers webinar, Oscar Rodriguez, Ph.D., Postdoctoral Researcher at the University of Louisville, and Ruben Martínez Barricarte, Ph.D., Assistant Professor of Medicine at Vanderbilt University, shared recent advancements in immunogenetics. This article discusses their research on genetic variation in antibody loci, antibody production processes,...
        11-06-2024, 07:24 PM
      • seqadmin
        Choosing Between NGS and qPCR
        by seqadmin



        Next-generation sequencing (NGS) and quantitative polymerase chain reaction (qPCR) are essential techniques for investigating the genome, transcriptome, and epigenome. In many cases, choosing the appropriate technique is straightforward, but in others, it can be more challenging to determine the most effective option. A simple distinction is that smaller, more focused projects are typically better suited for qPCR, while larger, more complex datasets benefit from NGS. However,...
        10-18-2024, 07:11 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, Today, 11:09 AM
      0 responses
      22 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, Today, 06:13 AM
      0 responses
      20 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 11-01-2024, 06:09 AM
      0 responses
      30 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 10-30-2024, 05:31 AM
      0 responses
      21 views
      0 likes
      Last Post seqadmin  
      Working...
      X