Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • bair
    Member
    • Jan 2010
    • 65

    samtools merge

    I'm going to merge > 50 alignment bam files (is it possible to merge this number of bam files?), it's too big,
    thus I want to merge by chromosome.

    1. samtools view -u file1.bam chr1 > chr1.file1.bam
    2. samtools view -u file2.bam chr1 > chr1.file2.bam

    no problem to create the above two files.

    3. samtools merge chr1.bam chr1.file1.bam chr1.bam


    [bam_header_read] EOF marker is absent.


    Since the merged file looks ok,

    What does this information mean?

    thanks
  • lh3
    Senior Member
    • Feb 2008
    • 686

    #2
    It means either a) you BAM is generated by an old version of samtools; or b) your BAM is truncated.

    Comment

    • bair
      Member
      • Jan 2010
      • 65

      #3
      Originally posted by lh3 View Post
      It means either a) you BAM is generated by an old version of samtools; or b) your BAM is truncated.
      I uased bowtie for alignment, and convert it's sam output to bam by samtools.

      Thanks.

      Comment

      • rahilsethi
        Member
        • May 2010
        • 22

        #4
        samtools merge problem

        Hi,

        I am having the same problem as blair had when used samtools merge:

        [bam_header_read] EOF marker is absent. The input is probably truncated.

        I also followed the same steps

        1. Files: bam1_sorted_indexed.bam, bam2_sorted_indexed.bam
        2. Merge: samtools merge -u output.bam bam1_sorted.bam bam2_sorted.bam

        Merge files with no problem, but further running samtools on merged bam file such as samtools sort or samtools depth gives the above "EOF marker absent" warning, though it does produce the output.

        When using Picard I did not have such problem, but Picard seems to be not able to handle large eg. if bam1 >= 8G or bam2 >= 8G, where it breaks and gives runtime error. In those cases one might have to rely on samtools merge. Should I be concerned about the above warning samtools gives?

        Comment

        • rahilsethi
          Member
          • May 2010
          • 22

          #5
          to add to the above
          a) my bam files are generated by the same samtools version as the merged file and also for the sort and depth activities (0.1.18)
          b) my bam files are also not truncated since Picard can run fine

          Comment

          • swbarnes2
            Senior Member
            • May 2008
            • 910

            #6
            It might be the -u in your command line.

            If you do something like this:

            samtools view -bShu file.sam > file.bam
            samtools sort file.bam sort
            samtools will complain that there is no EOF marker. But it still works fine.

            Comment

            Latest Articles

            Collapse

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by SEQadmin2, 06-09-2026, 11:58 AM
            0 responses
            15 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 06-05-2026, 10:09 AM
            0 responses
            26 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 06-04-2026, 08:59 AM
            0 responses
            37 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 06-02-2026, 12:03 PM
            0 responses
            61 views
            0 reactions
            Last Post SEQadmin2  
            Working...