Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • desmo
    replied
    Thanks for your help.
    I'll test it as soon as possible. Thanks again

    Leave a comment:


  • Richard Finney
    replied
    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;
    }

    Leave a comment:


  • desmo
    started a topic UCSC Bin indexing system

    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

Latest Articles

Collapse

  • seqadmin
    Exploring the Dynamics of the Tumor Microenvironment
    by seqadmin




    The complexity of cancer is clearly demonstrated in the diverse ecosystem of the tumor microenvironment (TME). The TME is made up of numerous cell types and its development begins with the changes that happen during oncogenesis. “Genomic mutations, copy number changes, epigenetic alterations, and alternative gene expression occur to varying degrees within the affected tumor cells,” explained Andrea O’Hara, Ph.D., Strategic Technical Specialist at Azenta. “As...
    07-08-2024, 03:19 PM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, Yesterday, 06:46 AM
0 responses
9 views
0 likes
Last Post seqadmin  
Started by seqadmin, 07-24-2024, 11:09 AM
0 responses
24 views
0 likes
Last Post seqadmin  
Started by seqadmin, 07-19-2024, 07:20 AM
0 responses
159 views
0 likes
Last Post seqadmin  
Started by seqadmin, 07-16-2024, 05:49 AM
0 responses
127 views
0 likes
Last Post seqadmin  
Working...
X