Announcement

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

  • Problem using BASH to pipe Piccard command

    I'm new to Bash, but would like to use it.
    I would like to pipe two Picard (GATK pipeline) commands using Bash. Each of these commands works fine when they are run as individual Bash scripts (see below). However, when I try to combine them within a single bash script, it no longer works. I really cannot find the bug though. Help is much appreciated.


    BASH Script 1
    #!/bin/bash

    # Set paths
    picardtools='PATH/picard.jar'
    bams="PATH/BAM"
    outSorted='PATH/outSorted'

    for i in BamFile1 BamFile2
    do
    java -jar $picardtools SortSam INPUT=$bams/"$i" OUTPUT=$outSorted/"$i" SORT_ORDER=coordinate CREATE_INDEX=TRUE VALIDATION_STRINGENCY=LENIENT
    done


    BASH Script 2
    #!/bin/bash

    # Set paths
    picardtools='PATH/picard.jar'
    outSorted='PATH/outSorted'
    outSorted2='PATH/outSorted2'

    for i in BamFile1 BamFile2
    do
    java -jar $picardtools AddOrReplaceReadGroups INPUT=$outSorted/$i OUTPUT=$outSorted2/"$i" SORT_ORDER=coordinate RGID="$i" RGLB="$i" RGPL=illumina RGPU="$i" RGSM="$i" CREATE_INDEX=True
    done


    ######################

    Here my attempts to pipe the two Scripts into one. But neither of these attempts worked. Can you help me find out why?

    Attempt 1
    #!/bin/bash

    # Set paths
    picardtools='PATH/picard.jar'
    bams="PATH/BAM"
    outSorted='PATH/outSorted'
    outSorted2='PATH/outSorted2'

    for i in BamFile1 BamFile2
    do
    java -jar $picardtools SortSam INPUT=$bams/"$i" OUTPUT=$outSorted/"$i" SORT_ORDER=coordinate CREATE_INDEX=TRUE VALIDATION_STRINGENCY=LENIENT
    java -jar $picardtools AddOrReplaceReadGroups INPUT=$outSorted/$i OUTPUT=$outSorted2/"$i" SORT_ORDER=coordinate RGID="$i" RGLB="$i" RGPL=illumina RGPU="$i" RGSM="$i" CREATE_INDEX=True
    done


    Attempt 2
    #!/bin/bash

    # Set paths
    picardtools='PATH/picard.jar'
    bams="PATH/BAM"
    outSorted2='PATH/outSorted2'

    for i in BamFile1 BamFile2
    do
    java -jar $picardtools SortSam INPUT=$bams/"$i" OUTPUT=/dev/stdout SORT_ORDER=coordinate CREATE_INDEX=TRUE VALIDATION_STRINGENCY=LENIENT | \
    java -jar $picardtools AddOrReplaceReadGroups INPUT=/dev/stdin OUTPUT=$outSorted2/"$i" SORT_ORDER=coordinate RGID="$i" RGLB="$i" RGPL=illumina RGPU="$i" RGSM="$i" CREATE_INDEX=True
    done

Latest Articles

Collapse

  • seqadmin
    Advanced Methods for the Detection of Infectious Disease
    by seqadmin




    The recent pandemic caused worldwide health, economic, and social disruptions with its reverberations still felt today. A key takeaway from this event is the need for accurate and accessible tools for detecting and tracking infectious diseases. Timely identification is essential for early intervention, managing outbreaks, and preventing their spread. This article reviews several valuable tools employed in the detection and surveillance of infectious diseases.
    ...
    11-27-2023, 01:15 PM
  • seqadmin
    Strategies for Investigating the Microbiome
    by seqadmin




    Microbiome research has led to the discovery of important connections to human and environmental health. Sequencing has become a core investigational tool in microbiome research, a subject that we covered during a recent webinar. Our expert speakers shared a number of advancements including improved experimental workflows, research involving transmission dynamics, and invaluable analysis resources. This article recaps their informative presentations, offering insights...
    11-09-2023, 07:02 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, Yesterday, 02:24 PM
0 responses
11 views
0 likes
Last Post seqadmin  
Started by seqadmin, Yesterday, 07:37 AM
0 responses
21 views
0 likes
Last Post seqadmin  
Started by seqadmin, 12-04-2023, 08:23 AM
0 responses
8 views
0 likes
Last Post seqadmin  
Started by seqadmin, 12-01-2023, 09:55 AM
0 responses
24 views
0 likes
Last Post seqadmin  
Working...
X