Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • how convert several bam files to fasta?

    Hello!
    I have 1979 mtDNA bam files and I need to convert these files to individual fastas. Since there are so many files, I would like to do this conversion faster or even once. I have no idea how to do that.
    Can someone help me?

  • #2
    Use reformat.sh from BBMap suite. Take a look at BAM processing options in in-line help to decide if you want to keep primary reads etc.

    Code:
     for i in *.bam; do reformat.sh in=${i} out=${i}.fa add_options_you_need; done
    Above would get you individual reads.

    If your "convert bam to fasta" need is for consensus fasta sequence then check this tutorial on Biostars.
    Last edited by GenoMax; 09-12-2019, 08:22 AM.

    Comment


    • #3
      so using reformat.sh command can I convert multiple bam to fasta at once? for this i need to open the folder with all bam and run the command?
      Sorry, if the question is too obvious, but I'm still very lay.
      I have difficulty understanding the command options in the terminal, is there any online manual that I help with BBmap?

      Comment


      • #4
        Yes you can convert multiple files at once. If your data came from paired-end reads then be aware that the "out=" files will contain data in interleaved format. You will need to separate R1/R2 reads. Again reformat.sh can be used for that as well.

        Here is a guide for reformat.sh.

        Comment


        • #5
          I tried to execute the command and the following message appeared. Do you know how I can solve this?
          /media/lucasmalzoni/Seagate Backup Plus Drive1/Joao/MT/02-Bam$ reformat.sh in=${i}.bam out=${i}.fa
          java -ea -Xms300m -cp /home/lucasmalzoni/anaconda3/opt/bbmap-38.67-0/current/ jgi.ReformatReads in=.bam out=.fa
          Executing jgi.ReformatReads [in=.bam, out=.fa]

          Exception in thread "main" java.lang.RuntimeException: Can't read file '.bam'
          at shared.Tools.testInputFiles(Tools.java:1157)
          at jgi.ReformatReads.<init>(ReformatReads.java:337)
          at jgi.ReformatReads.main(ReformatReads.java:50)
          (base) lucasmalzoni@galton:/media/lucasmalzoni/Seagate Backup Plus Drive1/Joao/MT/02-Bam$

          Comment


          • #6
            Can you copy what you did as a command and paste it here, and then list the directory as well and paste a few filenames as well? It looks like it didn't find any bam files. Are there files ending in .bam in that directory?
            Providing nextRAD genotyping and PacBio sequencing services. http://snpsaurus.com

            Comment


            • #7
              1.I opened the directory with the files in the terminal.
              2. Then I used the following command:
              reformat.sh in=${i}.bam out=${i}.fa
              3. I received the following message:
              java -ea -Xms300m -cp /home/lucasmalzoni/anaconda3/opt/bbmap-38.67-0/current/ jgi.ReformatReads in=.bam out=.fa
              Executing jgi.ReformatReads [in=.bam, out=.fa]

              Exception in thread "main" java.lang.RuntimeException: Can't read file '.bam'
              at shared.Tools.testInputFiles(Tools.java:1157)
              at jgi.ReformatReads.<init>(ReformatReads.java:337)
              at jgi.ReformatReads.main(ReformatReads.java:50)
              4.file extensions contained in the directory
              /home/lucasmalzoni/Documentos/DOC/1-file_aligned_SortSam_MarkDuplicates.bai
              /home/lucasmalzoni/Documentos/DOC/1-file_aligned_SortSam_MarkDuplicates.bam
              /home/lucasmalzoni/Documentos/DOC/1-file_aligned_SortSam_MarkDuplicates.metrics.txt

              I don't understand why it's not working.

              Comment


              • #8
                You should do the entire command as Genomax listed (with a change, I think, I'll mention below):

                for i in *.bam; do reformat.sh in=${i}.bam out=${i}.fa; done

                The first part (for i in *.bam) finds all the files ending in .bam in the directory, then passes them to the "do" command. So you should change the command to the below which removes the .bam from the in= name, since $i should already have the .bam at the end.

                for i in *.bam; do reformat.sh in=$i out=${i}.fa; done

                The output file will be named something like
                filename.bam.fa
                Providing nextRAD genotyping and PacBio sequencing services. http://snpsaurus.com

                Comment


                • #9
                  Good catch SNPsaurus. I have updated my original command. There was an additional ".bam" in there.

                  @Manuelly: Use
                  Code:
                  for i in *.bam; do reformat.sh in=$i out=${i}.fa; done
                  If you are trying to run this for just one file then you should do:

                  Code:
                   reformat.sh in=your.bam out=file.fa

                  Comment


                  • #10
                    Convert several bam files to fasta? I had no idea about this before as I've only been doing some web development for netticasino-opas.net and kasinobonukset24.net lately. I got full ideas from this article. Looks like I can do it myself. Thank you.
                    Last edited by RobertWood90; 02-17-2020, 06:33 AM.

                    Comment


                    • #11
                      thank you very much for all the help. I realize that I have difficulty understanding the syntax of some commands and I don't know how to overcome this difficulty. Like "for i in *.bam". Is there any material I can read and improve my understanding?

                      Comment


                      • #12
                        1.after extracting the consensus in fasta format, I opened fasta and came across this:
                        >E00382:156:HMFJCCCXX:1:1102:7659:38315/2
                        TTCCCCTTAAATAAGACATCACGATGGATCACAGGTCTATCACCCTATTAACCACTCACGGGAGCTCTCCATGCATTTGGTATTTTCGTCTGGGGGGTATGCACGCGATAGCATTGCGAGACGCTGGAGCCGGAGCACCCTATGTCGCAGT
                        >E00382:156:HMFJCCCXX:1:1105:22019:53803/1
                        ATGGATCACAGGTCTATCACCCTATTAACCACTCACGGGAGCTCTCCATGCATTTGGTATTTTCGTCTGGGGGGTATGCACGCGATAGCATTGCGAGACGCTGGAGCCGGAGCACCCTATGTCGCAGTATCTGTCTTTGATTCCTGCCCCA
                        2.I think my fasta is separated by reads. and to solve this I used the following command:
                        for i in *.fa; do reformat.sh in1=$i in2=$i out=${i}.fa ; done
                        3. I believe it is not this command or something went wrong in the command. Can anyone help me?

                        I want uninterrupted fastas. it is possible?
                        Last edited by Manuelly; 09-17-2019, 11:58 AM.

                        Comment


                        • #13
                          Output fasta reads were interleaved (put in one file) since you had paired-end reads to begin with. To separate them into two files you should use the command below.

                          Code:
                          for i in *.fa; do name=$(basename $(i} .fa); reformat.sh in=${name}.fa out1=${name}_R1.fa out=${name}_R2.fa ; done
                          You could also do the original conversion by providing "out1=" and "out2=" separate file names during BAM conversion to avoid this step.

                          Comment


                          • #14
                            I think I did not express myself well. I need a single fasta per sample and not interleaved. like that:
                            >1 NC_012920.1:1-16569
                            GATCACAGGTCTATCACCCTATTAACCACTCACGGGAGCTCTCCATGCATTTGGTATTTT
                            CGTCTGGGGGGTGTGCACGCGATAGCATTGCGAGACGCTGGAGCCGGAGCACCCTATGTC
                            GCAGTATCTGTCTTTGATTCCTGCCTCATCCTATTATTTATCGCACCTACGTTCAATATT
                            ACAGGCGAACATACTTACTAAAGTGTGTTAATTAATTAATGCTTGTAGGACATAATAATA
                            ACAATTGAATGTCTGCACAGCCGCTTTCCACACAGACATCATAACAAAAAATTTCCACCA
                            AACCCCCCCTCCCCCCGCTTCTGGCCACAGCACTTAAACACATCTCTGCCAAACCCCAAA
                            AACAAAGAACCCTAACACCAGCCTAACCAGATTTCAAATTTTATCTTTTGGCGGTATGCA
                            CTTTTAACAGTCACCCCCCAACTAACACATTATTTTCCCCTCCCACTCCCATACTACTAA

                            Comment


                            • #15
                              Then we have been on wrong track all along. You should have said you need a consensus fasta file from the BAM alignment.

                              What you need is: https://www.biostars.org/p/367960/

                              I had posted this in post #2 in this thread above.
                              Last edited by GenoMax; 09-17-2019, 04:00 PM.

                              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
                              177 views
                              0 likes
                              Last Post seqadmin  
                              Started by seqadmin, 02-28-2025, 12:58 PM
                              0 responses
                              267 views
                              0 likes
                              Last Post seqadmin  
                              Started by seqadmin, 02-24-2025, 02:48 PM
                              0 responses
                              652 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