Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • The format of the ooc file in Blat

    Hi, I'm new here.

    Blat produces ooc file to store the over-repetitive fragment in the chromosomes. I wonder whether the format specification of this ooc file is public, or there is any program to parse it.

    Thanks a lot.

  • #2
    I wrote a PERL script to decode it.
    The sequence database is a subset of hg19, including
    chr1 to chr22, chrX, chrY, and chrM.

    The tileSize I used is 11.

    There are 30031 11-mer excluded in the ooc file.

    The decoded file looks like:
    1480676850
    11
    0
    1
    2
    3
    4
    5
    6
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    24
    25
    26
    27
    32
    33
    34
    .....
    4193279
    4193535
    4194046
    4194047
    4194303

    Here is the code:
    $in="11.ooc";
    open(IN, "< $in");
    binmode(IN);
    open(OUT, "> out");
    while (read(IN,$b,4)) {
    $byteCount++;
    $a=unpack("V",$b);
    print(OUT $a."\n");
    }

    Comment


    • #3
      this is great, thank you.

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Essential Discoveries and Tools in Epitranscriptomics
        by seqadmin




        The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
        04-22-2024, 07:01 AM
      • seqadmin
        Current Approaches to Protein Sequencing
        by seqadmin


        Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
        04-04-2024, 04:25 PM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, Yesterday, 08:47 AM
      0 responses
      14 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-11-2024, 12:08 PM
      0 responses
      60 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 10:19 PM
      0 responses
      60 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 09:21 AM
      0 responses
      54 views
      0 likes
      Last Post seqadmin  
      Working...
      X