Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Help with sorting sam files in python!

    Hello All!

    I am new to coding. I have written a python script to analyze a bunch of fastq files from RNASeq analysis. I am using the subprocess module to call bowtie2 in order to index the genome and align the unpaired short reads to the genome.My script generates a sam file which needs to be sorted before running the cuffdiff module. The linux sort command works perfectly on my mac, however, in spite of installing the Unxupdates on my windows at work, I am unable to make my script work. I am hoping for some help/advice here to sort my sam file in python. Here is the script I tried.

    #!/usr/bin/env python2.7

    import os, sys

    inputFile = open(‘Outputfile1.txt’, 'r')

    lineList = inputFile.readlines()

    for line in sorted(lineList):

    print(line.rstrip());

    With this script, the stdout is written to the screen. But this recognizes only the text file. Sam files are not recognized.

    Any help is much appreciated.

    Thanks in advance.
    -M

  • #2
    No, that's really not how you should sort a sam file. You should either have a look at samtools sort or pysam (python module).

    I don't think doing this in plain python is a good idea, there are better alternatives such as bash loops, gnu-parallel, snakemake.

    Comment


    • #3
      Hi wdecoster,

      Thanks for your response. Samtools sort function does not work on the windows terminal with either sam or bam files. But the samtools view function converts sam to bam format successfully. Also, the latest version of pysam for windows is not running on my machine. I will try snakemake.

      Thanks again,
      -M

      Comment


      • #4
        Originally posted by mavadhani View Post
        Samtools sort function does not work on the windows terminal with either sam or bam files.
        Is that reference to "ubuntu bash on windows 10" or something else?

        Comment


        • #5
          Thanks GenoMax. Samtools sort sorts only bam files on the windows 10 terminal. With the sam file input, it gives the following error: samtools.exe has stopped working.

          Also, does pysam work on windows? From what I saw, there is no pysam version for windows yet.

          Thanks again,
          -M

          Comment


          • #6
            AFAIK the linux version of samtools works with ubuntu bash terminal in windows 10. Are you not using that (I see a reference to samtools.exe)?

            Comment


            • #7
              That is what I am using. samtools view works fine. The sort function works only on bam input, not on the sam input.

              I downloaded unix utilities from
              http://gnuwin32.sourceforge.net/packages/coreutils.htm.

              Now the linux sort works on windows.

              Thanks again.
              -M

              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
              9 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, Yesterday, 07:17 AM
              0 responses
              13 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
              22 views
              0 likes
              Last Post seqadmin  
              Working...
              X