Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Qsub bwa pipeline...

    This may seem like a relatively easy question, but here goes:

    I am trying to create a relatively simple shell script that sits in a parent folder, goes through all subfolders, grabs all files with the extension .fq, and aligns them using BWA aln. The caveat is that I need to use qsub to do this or I will make the admins very unhappy

    My initial script was something along the lines of the following:

    result=(`find . -name "*.fq" -type f`)

    for i1 in ${result[@]}
    do

    qsub -q queue_name -l nodes=1pn=8 -V test.sh

    done

    It should be noted that the first portion simply gets the filenames (and paths) and the second calls test.sh, which is shown below (note that the first two variable paths are truncated for forum purposes):

    REFERENCE=/refpath
    BWA_HOME=/bwapath

    result=(`find . -name "*.fq" -type f`)

    for i1 in ${result[@]}
    do

    $BWA_HOME/bwa aln -t 8 $REFERENCE $i1 > $i1".sai"

    done

    I am simply trying to get BWA to run using the $1i filename and $i1.sai as the output name. The reason I ran the for loop here and in the initial script is because there seems to be a problem holding on to $i1. If I run the bottom script as a standalone script, BWA begins running on the first file. The key is I'm not certain how to get it to run qsub X times (where X is the number of .fq files), each time is with a different file/output. Any help would be greatly appreciated. Thanks!

  • #2
    Anyone?

    Comment


    • #3
      What if you change your test.sh to just take one .fq file at a time and you pass the file name to test.sh in the for-loop of your initial script?

      Comment


      • #4
        If you are interested check out our pipeline (www.keatslab.org). Its a qsub based program. We build two flavours. One that reads all the fastq pairs in a folder and aligns then calls variants. The other leverages an input file that allows for proper RG tag assignment that is required for GATK variant calling. Nice thing is it will merge multiple lanes of the same library together for you.

        Comment


        • #5
          You'll probably find it more convenient to use a single job array than submitting many jobs in a loop.
          In your launch script do a single qsub:
          qsub -t 0-$[${#result[@]}-1] test.sh
          In test.sh the environment variable PBS_ARRAYID tells you which job is running:
          i1=${result[$PBS_ARRAYID]}

          Comment


          • #6
            Got it working using:

            sh "/filepath/test.sh $i1" | qsub -q queue_name -l nodes=1pn=8

            Not positive why I had to go about it in such a roundabout way.

            Comment

            Latest Articles

            Collapse

            • seqadmin
              Understanding Genetic Influence on Infectious Disease
              by seqadmin




              During the COVID-19 pandemic, scientists observed that while some individuals experienced severe illness when infected with SARS-CoV-2, others were barely affected. These disparities left researchers and clinicians wondering what causes the wide variations in response to viral infections and what role genetics plays.

              Jean-Laurent Casanova, M.D., Ph.D., Professor at Rockefeller University, is a leading expert in this crossover between genetics and infectious...
              09-09-2024, 10:59 AM
            • seqadmin
              Addressing Off-Target Effects in CRISPR Technologies
              by seqadmin






              The first FDA-approved CRISPR-based therapy marked the transition of therapeutic gene editing from a dream to reality1. CRISPR technologies have streamlined gene editing, and CRISPR screens have become an important approach for identifying genes involved in disease processes2. This technique introduces targeted mutations across numerous genes, enabling large-scale identification of gene functions, interactions, and pathways3. Identifying the full range...
              08-27-2024, 04:44 AM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by seqadmin, Today, 06:25 AM
            0 responses
            9 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, Yesterday, 01:02 PM
            0 responses
            8 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 09-18-2024, 06:39 AM
            0 responses
            10 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 09-11-2024, 02:44 PM
            0 responses
            13 views
            0 likes
            Last Post seqadmin  
            Working...
            X