Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • HTseq

    Hi all,
    I have a BAM file from paired end tophat output and and I wanted to apply HTseq to count the mapped reads, because it was paired mate and also BAM, I did following steps but still I receive error:

    samtools sort accepted_hits.bam accepted_hits.sorted

    samtools view accepted_hits.sorted.bam | htseq-count - /hg19/Annotation/Genes/genes.gtf > count.txt

    and this is the error :
    Warning: Read ERR009097.6031922 claims to have an aligned mate which could not be found. (Is the SAM file properly sorted?)

    Actually it was the same error I got before sorting so I did sorting but it is still the case.
    And according to fastqc analysis for the left and right fastq files I have the same number of sequences.

    Thanks for the help
    Last edited by narges; 09-06-2012, 04:39 AM.

  • #2
    You didn't actually convert it to .sam. You should have wrote

    samtools view accepted_hits.bam accepted_hits.sam

    And then sort the acccepted_hits.sam file

    Comment


    • #3
      Originally posted by billstevens View Post
      You didn't actually convert it to .sam. You should have wrote

      samtools view accepted_hits.bam accepted_hits.sam

      And then sort the acccepted_hits.sam file
      Thank you, but I have used the same command, I mean like this :

      samtools view accepted_hits.bam | htseq-count - /hg19/Annotation/Genes/genes.gtf > count.txt

      for the single end dataset which did not ask for sorting and it worked.
      Althigh I tried your advice and again there were more errors like :

      [bam_index_load] fail to load BAM index.
      [main_samview] random alignment retrieval only works for indexed BAM files.
      And then I indexed the file : samtools index accepted_hits.bam

      And then :

      $ samtools view accepted_hits.bam.bai accepted_hits.sam
      [bam_header_read] EOF marker is absent.
      [bam_header_read] invalid BAM binary header (this is not a BAM file).
      [main_samview] fail to read the header from "accepted_hits.bam.bai".

      The bam file I am using is the tophat output and I did not approach this problem of indexing and so on with this kind of result

      Comment


      • #4
        @narges: the problem was that you sorted by coordinate rather than read name, which is required for pair-end reads.

        Try instead:
        Code:
        samtools sort -n accepted_hits.bam accepted_hist.sorted
        samtools view accepted_hits.sorted.bam | htseq-count - /hg19/Annotation/Genes/genes.gtf > count.txt

        Comment


        • #5
          Originally posted by dpryan View Post
          @narges: the problem was that you sorted by coordinate rather than read name, which is required for pair-end reads.

          Try instead:
          Code:
          samtools sort -n accepted_hits.bam accepted_hist.sorted
          samtools view accepted_hits.sorted.bam | htseq-count - /hg19/Annotation/Genes/genes.gtf > count.txt
          Thank you so much, now it works

          Comment

          Latest Articles

          Collapse

          • seqadmin
            Non-Coding RNA Research and Technologies
            by seqadmin




            Non-coding RNAs (ncRNAs) do not code for proteins but play important roles in numerous cellular processes including gene silencing, developmental pathways, and more. There are numerous types including microRNA (miRNA), long ncRNA (lncRNA), circular RNA (circRNA), and more. In this article, we discuss innovative ncRNA research and explore recent technological advancements that improve the study of ncRNAs.

            Nobel Prize for MicroRNA Discovery
            This week,...
            10-07-2024, 08:07 AM
          • seqadmin
            Recent Developments in Metagenomics
            by seqadmin





            Metagenomics has improved the way researchers study microorganisms across diverse environments. Historically, studying microorganisms relied on culturing them in the lab, a method that limits the investigation of many species since most are unculturable1. Metagenomics overcomes these issues by allowing the study of microorganisms regardless of their ability to be cultured or the environments they inhabit. Over time, the field has evolved, especially with the advent...
            09-23-2024, 06:35 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, 10-11-2024, 06:55 AM
          0 responses
          11 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 10-02-2024, 04:51 AM
          0 responses
          109 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 10-01-2024, 07:10 AM
          0 responses
          114 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 09-30-2024, 08:33 AM
          1 response
          119 views
          0 likes
          Last Post EmiTom
          by EmiTom
           
          Working...
          X