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
              Advancing Precision Medicine for Rare Diseases in Children
              by seqadmin




              Many organizations study rare diseases, but few have a mission as impactful as Rady Children’s Institute for Genomic Medicine (RCIGM). “We are all about changing outcomes for children,” explained Dr. Stephen Kingsmore, President and CEO of the group. The institute’s initial goal was to provide rapid diagnoses for critically ill children and shorten their diagnostic odyssey, a term used to describe the long and arduous process it takes patients to obtain an accurate...
              12-16-2024, 07:57 AM
            • seqadmin
              Recent Advances in Sequencing Technologies
              by seqadmin



              Innovations in next-generation sequencing technologies and techniques are driving more precise and comprehensive exploration of complex biological systems. Current advancements include improved accessibility for long-read sequencing and significant progress in single-cell and 3D genomics. This article explores some of the most impactful developments in the field over the past year.

              Long-Read Sequencing
              Long-read sequencing has seen remarkable advancements,...
              12-02-2024, 01:49 PM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by seqadmin, 12-17-2024, 10:28 AM
            0 responses
            26 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 12-13-2024, 08:24 AM
            0 responses
            42 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 12-12-2024, 07:41 AM
            0 responses
            28 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 12-11-2024, 07:45 AM
            0 responses
            42 views
            0 likes
            Last Post seqadmin  
            Working...
            X