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
            Advancing Precision Medicine for Rare Diseases in Children
            by seqadmin




            Many organizations study rare diseases, but few have a mission as impactful as Rady Children’s Institute for Genomic Medicine (RCIGM). “We are all about changing outcomes for children,” explained Dr. Stephen Kingsmore, President and CEO of the group. The institute’s initial goal was to provide rapid diagnoses for critically ill children and shorten their diagnostic odyssey, a term used to describe the long and arduous process it takes patients to obtain an accurate...
            12-16-2024, 07:57 AM
          • seqadmin
            Recent Advances in Sequencing Technologies
            by seqadmin



            Innovations in next-generation sequencing technologies and techniques are driving more precise and comprehensive exploration of complex biological systems. Current advancements include improved accessibility for long-read sequencing and significant progress in single-cell and 3D genomics. This article explores some of the most impactful developments in the field over the past year.

            Long-Read Sequencing
            Long-read sequencing has seen remarkable advancements,...
            12-02-2024, 01:49 PM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, 12-17-2024, 10:28 AM
          0 responses
          33 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 12-13-2024, 08:24 AM
          0 responses
          49 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 12-12-2024, 07:41 AM
          0 responses
          34 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 12-11-2024, 07:45 AM
          0 responses
          46 views
          0 likes
          Last Post seqadmin  
          Working...
          X