Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • vebaev
    Senior Res.
    • Oct 2008
    • 112

    what is this format?

    Hi, I have this format:

    AAAACTGGTTCCAGAAGTTGAGAC 1
    AAAACTGGTTCTGGCAGGTAG 1
    AAAACTGGTTGGGCTTAAAACTGC 5
    AAAACTGGTTGTAAACGGAGGAGC 2
    AAAACTGGTTTTAGATGGATAGAA 2
    AAAACTGGTTTTGCACTATTGGGC 1
    AAAACTGTAAAACAGGTGGTT 1


    what is this format and with what soft I can map it to ref genome?
    ------------
    SMART - bioinfo.uni-plovdiv.bg
  • maasha
    Senior Member
    • Apr 2009
    • 153

    #2
    My guess it that its a plain tab separated table with sequence and copy count.

    You can use Biopieces (www.biopieces.org) to convert this table into something useful - like FASTA format:

    Code:
    read_tab -i test.tab -k SEQ,COUNT | add_ident -k SEQ_NAME | merge_vals -k SEQ_NAME,COUNT | write_fasta -x
    >ID00000000_1
    AAAACTGGTTCCAGAAGTTGAGAC
    >ID00000001_1
    AAAACTGGTTCTGGCAGGTAG
    >ID00000002_5
    AAAACTGGTTGGGCTTAAAACTGC
    >ID00000003_2
    AAAACTGGTTGTAAACGGAGGAGC
    >ID00000004_2
    AAAACTGGTTTTAGATGGATAGAA
    >ID00000005_1
    AAAACTGGTTTTGCACTATTGGGC
    >ID00000006_1
    AAAACTGTAAAACAGGTGGTT
    You can also use Biopieces for mapping with bowtie, BWA, BLAST, etc ...


    Cheers,


    Martin
    Last edited by maasha; 11-15-2010, 05:52 AM.

    Comment

    • fkrueger
      Senior Member
      • Sep 2009
      • 627

      #3
      This format seems to have been processed with an adapter trimming program which results in varying sequence lengths.

      I assume
      "AAAACTGGTTGGGCTTAAAACTGC 5"

      needs to be interpreted as
      the sequence: "AAAACTGGTTGGGCTTAAAACTGC" was present exactly "5" times.

      What we have done with formats like this is transform it to FastA format like this:

      >1
      AAAACTGGTTGGGCTTAAAACTGC
      >2
      AAAACTGGTTGGGCTTAAAACTGC
      >3
      AAAACTGGTTGGGCTTAAAACTGC
      >4
      AAAACTGGTTGGGCTTAAAACTGC
      >5
      AAAACTGGTTGGGCTTAAAACTGC

      (to reflect the quantative aspect)

      and then map it to a genome using Bowtie or something similar.

      Good luck!

      edit: doh I was late!

      Comment

      • vebaev
        Senior Res.
        • Oct 2008
        • 112

        #4
        Thanks!,

        for the fasta I will managed to convert it, I was wandering if bowtie can get the small reads for the mapping in this fasta than..., because I saw all the times the input is fastq
        ------------
        SMART - bioinfo.uni-plovdiv.bg

        Comment

        • fkrueger
          Senior Member
          • Sep 2009
          • 627

          #5
          yes, just specify

          bowtie -f sequence_file.fa > output.txt

          This is taken from the Bowtie manual:

          -f The query input files (specified either as <m1> and <m2>, or as <s>) are FASTA files (usually having extension .fa, .mfa, .fna or similar). All quality values are assumed to be 40 on the Phred quality scale

          Comment

          • Torst
            Senior Member
            • Apr 2008
            • 275

            #6
            Originally posted by vebaev View Post
            AAAACTGGTTCCAGAAGTTGAGAC 1
            AAAACTGGTTCTGGCAGGTAG 1
            AAAACTGGTTGGGCTTAAAACTGC 5
            AAAACTGGTTGTAAACGGAGGAGC 2
            AAAACTGGTTTTAGATGGATAGAA 2
            AAAACTGGTTTTGCACTATTGGGC 1
            AAAACTGTAAAACAGGTGGTT 1
            It looks like someone has SORTED the reads, and COUNTED their frequency of occurrence.

            % grep -v '^>' reads.fasta | sort | uniq -c > vebaev.out

            Comment

            Latest Articles

            Collapse

            • SEQadmin2
              Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
              by SEQadmin2



              Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
              ...
              Yesterday, 11:10 AM
            • SEQadmin2
              Cancer Drug Resistance: The Lingering Barrier to Rising Survival
              by SEQadmin2



              Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

              There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
              07-08-2026, 05:17 AM
            • GATTACAT
              Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
              by GATTACAT
              Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
              07-01-2026, 11:43 AM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by SEQadmin2, Yesterday, 10:04 AM
            0 responses
            10 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-08-2026, 10:08 AM
            0 responses
            7 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-07-2026, 11:05 AM
            0 responses
            15 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-02-2026, 11:08 AM
            0 responses
            31 views
            0 reactions
            Last Post SEQadmin2  
            Working...