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 Analysis Tools
            by seqadmin


            The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
            Yesterday, 07:48 AM
          • 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

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, Today, 06:57 AM
          0 responses
          2 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, Yesterday, 07:17 AM
          0 responses
          12 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 05-02-2024, 08:06 AM
          0 responses
          19 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-30-2024, 12:17 PM
          0 responses
          20 views
          0 likes
          Last Post seqadmin  
          Working...
          X