Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • SOLiD seq process: Covert colorspace to basespace

    I have a collection of colorspace solid sequences to be translated into basespace sequences. After view the post http://seqanswers.com/forums/showthread.php?t=1425 , people are recommending that the official accessory python script "encodeFasta.py" which is shipped with the Corona Lite, is ideal to accomplish the task. However, I was unable to find the package Corona Lite both by following the link provided in the post and by searching Corona Lite on SOLiD's official website http://solidsoftwaretools.com/gf/. After viewing the post http://seqanswers.com/forums/showthr...ht=corona+lite , I realized that in 2009 Bioscope has replaced Corona Lite. By following the link in this post, I again failed to find what I want.
    Now I really want to ask help from people who have been dealing with SOLiD data everyday. What is the right place to go or right software package to download at this moment?

    Any suggestions are welcome and will be appreciated.


    Zhigang
    Last edited by zhigangwu; 12-08-2011, 11:03 AM.

  • #2
    Hi Zhigang,
    It is a very bad idea to convert raw SOLiD reads into base space. Instead you should map them (converting your reference into color space) in color space. There are a wide assortment of mappers that will do this.
    --
    Phillip

    Comment


    • #3
      Hi Phillip,
      Can you explain a bit to me why that's a bad idea?
      By borrowing idea from the script posted by roedel in http://seqanswers.com/forums/showthread.php?t=1425, I made myself one parser, which has been attached along with this post.

      Originally posted by pmiguel View Post
      Hi Zhigang,
      It is a very bad idea to convert raw SOLiD reads into base space. Instead you should map them (converting your reference into color space) in color space. There are a wide assortment of mappers that will do this.
      --
      Phillip
      Attached Files

      Comment


      • #4
        Sequencer reads have a chance of read error (e.g. spot misidentification), combined with a chance of sequence error (e.g. polymerase misread in the PCR step). For sequencers that output in base space, both these errors have a similar effect on the base-space mapping. For sequencers that output in color-space, the read errors result in a somewhat unexpected base-space translation even if the underlying sequence has a perfect match to the reference. The issues relating to color-space to base-space translation were discussed in the thread you linked to, but here's my take on it (dumped from an email I recently sent to someone else):

        A color-space sequence is an encoding of adjacent dimers such that unchanging bases are encoded with '0', complementary changes are encoded with '3', the colour '1' is used for a non-complementary base change on the same side of the alphabet (AC, CA, GT, or TG), and the colour '2' is used for a non-complementary base change on a different side of the alphabet (AG, GA, CT, or TC). A table of these changes can be found here:



        This has a few nice properties (e.g. the reverse-complement of a color-space sequence is the same as the reverse of the color-space sequence, a SNP will have two transitions), but many annoying and nasty properties. The first is that a color-space sequence in itself is meaningless without a base reference (usually the starting base).

        Here's an example color-space sequence:

        Code:
        2112322311010133121320003202203201302321 [40 chars]
        That color-space sequence can describe four different base-space sequences:

        Code:
        0: AGTGATCTACAACCATACTGCTTTTAGGAGGCTTGCCTAGT [41 chars]
        1: CTGTCGAGCACCAACGCAGTAGGGGCTTCTTAGGTAAGCTG
        2: GACAGCTCGTGGTTGCGTCATCCCCGAAGAATCCATTCGAC
        3: TCACTAGATGTTGGTATGACGAAAATCCTCCGAACGGATCA
        Note that these sequences are one character longer than their color-space equivalent, so by adding a starting base the sequence length does not change from the base-space representation.

        Code:
        A2112322311010133121320003202203201302321 [41 chars, decoded sequence 0]
        Here's another annoying property. It was pointed out before that the reverse complement of a color-space sequence is the reverse of the sequence. This is not entirely true if you include the starting base, because that base has now shifted to the end, and is its complementary partner:
        Code:
        rc(A2112322311010133121320003202203201302321)
        =1232031023022023000231213310101132232112<rc(A)> [easy]
        =1232031023022023000231213310101132232112T [easy]
        =A1232031023022023000231213310101132232112
        The last step is computationally hard, because it requires stepping through the sequence to work in reverse to find the first base.

        And for the last trick, errors are fairly common in color-space sequence reads:
        Code:
        A2112322311010133121320003202203201302321 [original]
        A2112322311010133121310003202203201302321 [error at position 21, before the 000]
        The base-space representation of these sequences:
        Code:
        AGTGATCTACAACCATACTGCTTTTAGGAGGCTTGCCTAGT [original]
        AGTGATCTACAACCATACTGCAAAATCCTCCGAACGGATCA [after a single error]
        This error has caused the base-space representation to switch from decoded sequence 0 above to decoded sequence 3 at position 22. A match of the base-space representation of this sequence would have 20 nucleotide differences, while there is only a single difference in color-space. The great differences between base-space representations are why color-space sequences should be assembled and/or mapped in color-space.

        Comment


        • #5
          Great Gringer, a very comprehensive explanation.


          Originally posted by gringer View Post
          Sequencer reads have a chance of read error (e.g. spot misidentification), combined with a chance of sequence error (e.g. polymerase misread in the PCR step). For sequencers that output in base space, both these errors have a similar effect on the base-space mapping. For sequencers that output in color-space, the read errors result in a somewhat unexpected base-space translation even if the underlying sequence has a perfect match to the reference. The issues relating to color-space to base-space translation were discussed in the thread you linked to, but here's my take on it (dumped from an email I recently sent to someone else):

          A color-space sequence is an encoding of adjacent dimers such that unchanging bases are encoded with '0', complementary changes are encoded with '3', the colour '1' is used for a non-complementary base change on the same side of the alphabet (AC, CA, GT, or TG), and the colour '2' is used for a non-complementary base change on a different side of the alphabet (AG, GA, CT, or TC). A table of these changes can be found here:



          This has a few nice properties (e.g. the reverse-complement of a color-space sequence is the same as the reverse of the color-space sequence, a SNP will have two transitions), but many annoying and nasty properties. The first is that a color-space sequence in itself is meaningless without a base reference (usually the starting base).

          Here's an example color-space sequence:

          Code:
          2112322311010133121320003202203201302321 [40 chars]
          That color-space sequence can describe four different base-space sequences:

          Code:
          0: AGTGATCTACAACCATACTGCTTTTAGGAGGCTTGCCTAGT [41 chars]
          1: CTGTCGAGCACCAACGCAGTAGGGGCTTCTTAGGTAAGCTG
          2: GACAGCTCGTGGTTGCGTCATCCCCGAAGAATCCATTCGAC
          3: TCACTAGATGTTGGTATGACGAAAATCCTCCGAACGGATCA
          Note that these sequences are one character longer than their color-space equivalent, so by adding a starting base the sequence length does not change from the base-space representation.

          Code:
          A2112322311010133121320003202203201302321 [41 chars, decoded sequence 0]
          Here's another annoying property. It was pointed out before that the reverse complement of a color-space sequence is the reverse of the sequence. This is not entirely true if you include the starting base, because that base has now shifted to the end, and is its complementary partner:
          Code:
          rc(A2112322311010133121320003202203201302321)
          =1232031023022023000231213310101132232112<rc(A)> [easy]
          =1232031023022023000231213310101132232112T [easy]
          =A1232031023022023000231213310101132232112
          The last step is computationally hard, because it requires stepping through the sequence to work in reverse to find the first base.

          And for the last trick, errors are fairly common in color-space sequence reads:
          Code:
          A2112322311010133121320003202203201302321 [original]
          A2112322311010133121310003202203201302321 [error at position 21, before the 000]
          The base-space representation of these sequences:
          Code:
          AGTGATCTACAACCATACTGCTTTTAGGAGGCTTGCCTAGT [original]
          AGTGATCTACAACCATACTGCAAAATCCTCCGAACGGATCA [after a single error]
          This error has caused the base-space representation to switch from decoded sequence 0 above to decoded sequence 3 at position 22. A match of the base-space representation of this sequence would have 20 nucleotide differences, while there is only a single difference in color-space. The great differences between base-space representations are why color-space sequences should be assembled and/or mapped in color-space.

          Comment

          Latest Articles

          Collapse

          • seqadmin
            Strategies for Sequencing Challenging Samples
            by seqadmin


            Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
            03-22-2024, 06:39 AM
          • seqadmin
            Techniques and Challenges in Conservation Genomics
            by seqadmin



            The field of conservation genomics centers on applying genomics technologies in support of conservation efforts and the preservation of biodiversity. This article features interviews with two researchers who showcase their innovative work and highlight the current state and future of conservation genomics.

            Avian Conservation
            Matthew DeSaix, a recent doctoral graduate from Kristen Ruegg’s lab at The University of Colorado, shared that most of his research...
            03-08-2024, 10:41 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, Yesterday, 06:37 PM
          0 responses
          11 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, Yesterday, 06:07 PM
          0 responses
          10 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 03-22-2024, 10:03 AM
          0 responses
          51 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 03-21-2024, 07:32 AM
          0 responses
          68 views
          0 likes
          Last Post seqadmin  
          Working...
          X