Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • #16
    Look into freebayes. There is samtools/bcftools based option as well.

    Comment


    • #17
      sorted bam and bbmap

      Is there an option for bbmap that will result in a sorted bam? I know adding "out=mapped.bam" this will produce a bam but it appears to be unsorted:

      Code:
      samtools view -H /home/cmccabe/IDP/mapped_unmatched_adapter_removed_quality_trimmed_NA12878-NextSeq-S1_R1_and_R2.bam
      @HD	VN:1.4	SO:unsorted
      Thank you .

      Comment


      • #18
        No. You have to do some work

        Code:
        $ samtools sort your_file.bam your_file_sorted

        Comment


        • #19
          just checking, thank you .

          bbmap is amazingly fast and accurate . Great tool.

          Comment


          • #20
            Originally posted by GenoMax View Post
            No. You have to do some work

            Code:
            $ samtools sort your_file.bam your_file_sorted
            Of course, I do my best to prevent needing people to do work, so...

            Code:
            bbmap.sh in=reads.fq out=mapped.bam bs=bs.sh; sh bs.sh
            That will write a script "bs.sh" that contains the command to make a sorted, indexed bam file, then execute it after BBMap is done. It saves... well, at least a couple of keystrokes

            Comment


            • #21
              Hmm. I should start a new thread for "Easter eggs" in BBMap

              Comment


              • #22
                Couldn't you create the shell script and then execute it within BBMap?

                Comment


                • #23
                  Originally posted by westerman View Post
                  Couldn't you create the shell script and then execute it within BBMap?
                  Unfortunately, not easily, due to memory constraints. BBMap's shell script already grabs all available memory by default. It can launch a samtools process for conversion to bam, which is a low-memory streaming process; but sorting uses a lot of memory (to do it most efficiently), so it might run out of memory. Java cannot reduce its virtual memory allocation after starting, and won't share that memory with other programs.

                  It would work fine on most individual computers since physical memory limits would never be exceeded, but job schedulers often have strict limits on virtual memory and will kill jobs that exceed it. So, it would reduce stability (and typically fail) on clusters unless I did parsing in the shellscript to launch a new process after BBMap terminates, or the user launched BBMap with a custom -Xmx flag. I try to keep the shellscripts as simple as possible. Anyway, there are workarounds, but they all add complexity due to memory issues.

                  Comment

                  Latest Articles

                  Collapse

                  • seqadmin
                    Essential Discoveries and Tools in Epitranscriptomics
                    by seqadmin




                    The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
                    04-22-2024, 07:01 AM
                  • seqadmin
                    Current Approaches to Protein Sequencing
                    by seqadmin


                    Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
                    04-04-2024, 04:25 PM

                  ad_right_rmr

                  Collapse

                  News

                  Collapse

                  Topics Statistics Last Post
                  Started by seqadmin, Today, 08:47 AM
                  0 responses
                  12 views
                  0 likes
                  Last Post seqadmin  
                  Started by seqadmin, 04-11-2024, 12:08 PM
                  0 responses
                  60 views
                  0 likes
                  Last Post seqadmin  
                  Started by seqadmin, 04-10-2024, 10:19 PM
                  0 responses
                  59 views
                  0 likes
                  Last Post seqadmin  
                  Started by seqadmin, 04-10-2024, 09:21 AM
                  0 responses
                  54 views
                  0 likes
                  Last Post seqadmin  
                  Working...
                  X