Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Samtools: extract multiple cromosomes/scaffolds from bam file

    Hi,
    I want to create a bam file containing three or four chromosomes/scaffolds.
    I only know this command

    samtools view -b align.sort.bam Chr06 > chr06.bam
    Last edited by Anti; 01-12-2015, 03:10 AM.

  • #2
    You can just use samtools merge with process substitution:

    Code:
    samtools merge merged.bam <(samtools view -b foo.bam chr1) <(samtools view -b foo.bam chr2) ...
    A likely faster method might be to just make a BED file containing those chromosomes/contigs and then just:
    Code:
    samtools view -b -L chromosomes.bed foo.bam > subset.bam

    Comment


    • #3
      Thanks so much, dpryan! but this command don't create a bam from two cromosomes.

      i used this :

      samtools merge merged.bam <(samtools view -b SE.bam chr1) & (samtools view -b SE.bam chr2)

      using your suggestion and works!
      Last edited by Anti; 01-12-2015, 06:26 AM.

      Comment


      • #4
        Adding a random "&" into a command will tend to break things.

        Comment


        • #5
          You are right.
          Command works but show this:
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.
          [bam_header_read] EOF marker is absent. The input is probably truncated.


          But the output bam is correct.

          Thanks so much, dpryan.

          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 on Modified Bases...
            Yesterday, 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, 04-11-2024, 12:08 PM
          0 responses
          39 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-10-2024, 10:19 PM
          0 responses
          41 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-10-2024, 09:21 AM
          0 responses
          35 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-04-2024, 09:00 AM
          0 responses
          55 views
          0 likes
          Last Post seqadmin  
          Working...
          X