Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • counting total bases in a fasta file

    Hello,

    I have a fasta file like below.

    >NODE_1476_length_303_cov_5.280528
    TTAAGTGGGATTTCGTTTAGTGAGGTAGGTACTTTTACTTGGATTTCCATAATTGTATAAG
    TCTTTTAGTCGTTTTTGTATTCCTTAGCCAATACATAAGAGTAGGCTTGAGCTAACATTTGA......
    >NODE_2306_length_339_cov_2.926254
    .
    .
    .

    I want to get total base-pair count from this file. I tried fastx toolkit but it did not work as my fasta format is not what fastx wants (guess fastx wants one line of sequences while mine has two lines of sequences). Could somebody suggest any tool or command for it? Thanks.

  • #2
    Here's a quick unix hack:
    grep -v ">" file.fasta | wc | awk '{print $3-$1}'

    Comment


    • #3
      Thanks, it works very well.

      Comment


      • #4
        The number of contigs

        I am given a fasta file like this file that you can download it. This file is de novo assembled genome.

        I have two very simple questions:

        1- How many contigs are present in this file? (my guess: it is equal to the number of rows in the file?!)

        2- what is the total genomic length of the assembly?
        (my guess: it is 'len=245876' which has been written in the first line)

        I am new in DNA sequence analysis stuff, thanks for your kind help.

        Comment


        • #5
          Originally posted by na_sd View Post
          The number of contigs

          I am given a fasta file like this file that you can download it. This file is de novo assembled genome.

          I have two very simple questions:

          1- How many contigs are present in this file? (my guess: it is equal to the number of rows in the file?!)
          @Brian and I had answered some of these questions in your Biostars post but looks like you are not convinced. The answers are still going to be the same.

          If you do
          Code:
          grep -c "^>" your_file
          that will give you a number for the contigs present in your file.
          2- what is the total genomic length of the assembly?
          (my guess: it is 'len=245876' which has been written in the first line)

          I am new in DNA sequence analysis stuff, thanks for your kind help.
          That may just be the length of first contig. Does each of your contigs have such a number? We don't know if the contigs you have overlap so it may not be possible to answer this question directly.

          PS: I am not going to download the file from dropbox to test.

          Comment


          • #6
            Originally posted by GenoMax View Post
            @Brian and I had answered some of these questions in your Biostars post but looks like you are not convinced. The answers are still going to be the same.

            If you do
            Code:
            grep -c "^>" your_file
            that will give you a number for the contigs present in your file.


            That may just be the length of first contig. Does each of your contigs have such a number? We don't know if the contigs you have overlap so it may not be possible to answer this question directly.

            PS: I am not going to download the file from dropbox to test.

            Thanks.
            I am not convinced because my file is not like general fasta file. It has ONLY one line with '>'. The person has asked me about the number of contigs in this file and I am sure that it is greater than 1.
            I wish you had downloaded the file and then answered my question.

            Comment


            • #7
              Originally posted by na_sd View Post
              Thanks.
              I am not convinced because my file is not like general fasta file. It has ONLY one line with '>'. The person has asked me about the number of contigs in this file and I am sure that it is greater than 1.
              I wish you had downloaded the file and then answered my question.
              If there is only one line starting with ">" in your file then

              a> Your file is either incomplete or
              b> the sequence got assembled as a single contig

              note: You appear to have removed the file from dropbox.
              Last edited by GenoMax; 09-23-2016, 06:23 AM.

              Comment

              Latest Articles

              Collapse

              • seqadmin
                New Genomics Tools and Methods Shared at AGBT 2025
                by seqadmin


                This year’s Advances in Genome Biology and Technology (AGBT) General Meeting commemorated the 25th anniversary of the event at its original venue on Marco Island, Florida. While this year’s event didn’t include high-profile musical performances, the industry announcements and cutting-edge research still drew the attention of leading scientists.

                The Headliner
                The biggest announcement was Roche stepping back into the sequencing platform market. In the years since...
                03-03-2025, 01:39 PM
              • seqadmin
                Investigating the Gut Microbiome Through Diet and Spatial Biology
                by seqadmin




                The human gut contains trillions of microorganisms that impact digestion, immune functions, and overall health1. Despite major breakthroughs, we’re only beginning to understand the full extent of the microbiome’s influence on health and disease. Advances in next-generation sequencing and spatial biology have opened new windows into this complex environment, yet many questions remain. This article highlights two recent studies exploring how diet influences microbial...
                02-24-2025, 06:31 AM

              ad_right_rmr

              Collapse

              News

              Collapse

              Topics Statistics Last Post
              Started by seqadmin, 03-03-2025, 01:15 PM
              0 responses
              178 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 02-28-2025, 12:58 PM
              0 responses
              269 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 02-24-2025, 02:48 PM
              0 responses
              653 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 02-21-2025, 02:46 PM
              0 responses
              267 views
              0 likes
              Last Post seqadmin  
              Working...
              X