Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Python script for bowtie2 alignment

    Hello All!

    I am new to coding and am trying to write 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 that is in fasta format. That works just fine. But I am stuck in the next step which is using bowtie2 to align the unpaired short reads to the genome. I know I am using the correct command as it works at the terminal generating a .sam file. But my python code is not working. Here are some of the ones I have tried--

    #process = subprocess.call (['bowtie2_align', indexfiles, fastqFile1, Outputfile])
    #process = subprocess.Popen(['bowtie2_align', stdin= indexfile, fastqFile1, stdout=Outputfile])

    #process2 = subprocess.call(["bowtie2_align" (-x indexfile, -U fastqFile1, -S 'Outputfile.sam')],shell=True)

    align = 'bowtie2_align' -x cellvibrio_index -U fastqFile1 -S initial_aligns.sam'

    I would really appreciate any help/suggestions to fix this code.

    Thanks,
    -M

  • #2
    It'd be something like:

    Code:
    subprocess.call(["bowtie2", "-x", indexBaseName, "-U", fastqFile1, "S", "Outpufile.sam"])
    However, I highly encourage you to not do this and instead use something like snakemake. This lets you do things directly in python when you need to but also abstracts all of that away when you don't (like this example). Plus, you can use a cluster and in general more easily control things without reinventing the wheel for the umpteenth time.

    Comment


    • #3
      Thank you very much dpryan. I will certainly give snakemake a shot.

      -Madhavi

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Best Practices for Single-Cell Sequencing Analysis
        by seqadmin



        While isolating and preparing single cells for sequencing was historically the bottleneck, recent technological advancements have shifted the challenge to data analysis. This highlights the rapidly evolving nature of single-cell sequencing. The inherent complexity of single-cell analysis has intensified with the surge in data volume and the incorporation of diverse and more complex datasets. This article explores the challenges in analysis, examines common pitfalls, offers...
        06-06-2024, 07:15 AM
      • seqadmin
        Latest Developments in Precision Medicine
        by seqadmin



        Technological advances have led to drastic improvements in the field of precision medicine, enabling more personalized approaches to treatment. This article explores four leading groups that are overcoming many of the challenges of genomic profiling and precision medicine through their innovative platforms and technologies.

        Somatic Genomics
        “We have such a tremendous amount of genetic diversity that exists within each of us, and not just between us as individuals,”...
        05-24-2024, 01:16 PM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, Yesterday, 06:58 AM
      0 responses
      13 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 06-06-2024, 08:18 AM
      0 responses
      20 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 06-06-2024, 08:04 AM
      0 responses
      18 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 06-03-2024, 06:55 AM
      0 responses
      13 views
      0 likes
      Last Post seqadmin  
      Working...
      X