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
            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...
            12-02-2024, 01:49 PM
          • seqadmin
            Genetic Variation in Immunogenetics and Antibody Diversity
            by seqadmin



            The field of immunogenetics explores how genetic variations influence immune responses and susceptibility to disease. In a recent SEQanswers webinar, Oscar Rodriguez, Ph.D., Postdoctoral Researcher at the University of Louisville, and Ruben Martínez Barricarte, Ph.D., Assistant Professor of Medicine at Vanderbilt University, shared recent advancements in immunogenetics. This article discusses their research on genetic variation in antibody loci, antibody production processes,...
            11-06-2024, 07:24 PM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, 12-02-2024, 09:29 AM
          0 responses
          150 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 12-02-2024, 09:06 AM
          0 responses
          51 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 12-02-2024, 08:03 AM
          0 responses
          42 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 11-22-2024, 07:36 AM
          0 responses
          74 views
          0 likes
          Last Post seqadmin  
          Working...
          X