Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • alessandra85
    Member
    • Sep 2010
    • 10

    frequency distribution plot

    Hi!!

    I have some .sff files from a 454 sequencing proyect. I wonder if someone can help me in giving me an idea of how to plot the frequency distribution of reads lenght, like there is in a lot of papers.

    Thanks in advanced
  • maasha
    Senior Member
    • Apr 2009
    • 153

    #2
    You can do this with Biopieces (www.biopieces.org) using FASTA files as input:

    Code:
    read_fasta -i in.fasta | plot_lendist -k SEQ_LEN -t post -o lendist.ps -x
    You can convert sff files to FASTA format with sff_extract from the MIRA package. I think it is in this bundle: http://sourceforge.net/projects/mira...r.bz2/download


    Cheers,


    Martin

    Comment

    • maubp
      Peter (Biopython etc)
      • Jul 2009
      • 1544

      #3
      Here is a Biopython solution using matplotlib for plotting, taken almost verbatim from the "Histogram of sequence lengths" example in the Biopython Tutorial, but using an SFF file as input:

      Code:
      from Bio import SeqIO
      sizes = [len(rec) for rec in SeqIO.parse("example.sff", "sff-trim")]
      
      import pylab
      pylab.hist(sizes, bins=20)
      pylab.title("%i Roche 454 reads\nLengths %i to %i" \
                  % (len(sizes),min(sizes),max(sizes)))
      pylab.xlabel("Read length (bp, trimmed)")
      pylab.ylabel("Count")
      pylab.show()

      Comment

      • alessandra85
        Member
        • Sep 2010
        • 10

        #4
        Thanks a lot for your answers!! For using biopieces and make the plot Do I have to install Ruby and Phyton necessarily?

        Comment

        • maasha
          Senior Member
          • Apr 2009
          • 153

          #5
          Biopieces have a number of prerequisites including Ruby (and for a few Biopieces, Python as well).



          However, even if the installation of Biopieces is a bit tricky, it is worth while, IMHO!


          Martin

          Comment

          • maubp
            Peter (Biopython etc)
            • Jul 2009
            • 1544

            #6
            Originally posted by maasha View Post
            You can convert sff files to FASTA format with sff_extract from the MIRA package. I think it is in this bundle: http://sourceforge.net/projects/mira...r.bz2/download
            Or from the sff_extract home page, http://bioinf.comav.upv.es/sff_extract/index.html - note this needs Python.

            Comment

            Latest Articles

            Collapse

            • mylaser
              Reply to Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
              by mylaser
              Kheloyar – Everything You Need to Know About Kheloyaar Login and Kheoyar Id
              If you are looking for an online gaming platform that offers a user-friendly experience, Kheloyar has become a name that many users search for. Whether you're interested in creating a new account, accessing your dashboard through Kheloyaar Login, or learning how to obtain a Kheoyar Id, understanding the platform's features and account process is essential.
              This guide explains everything you need to know about...
              Yesterday, 01:13 AM
            • 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.
              ...
              07-09-2026, 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

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by SEQadmin2, 07-09-2026, 10:04 AM
            0 responses
            19 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-08-2026, 10:08 AM
            0 responses
            11 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-07-2026, 11:05 AM
            0 responses
            28 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...