Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • 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

  • #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


    • #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


      • #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


        • #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


          • #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

            • 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, 04-11-2024, 12:08 PM
            0 responses
            59 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 04-10-2024, 10:19 PM
            0 responses
            57 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 04-10-2024, 09:21 AM
            0 responses
            53 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 04-04-2024, 09:00 AM
            0 responses
            56 views
            0 likes
            Last Post seqadmin  
            Working...
            X