Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • GATK-usage-ERROR-Helpreg

    Hi Seqanswers community,


    I am doing human whole genome sequence analysis, of the data obtained Illumina Hiseq 2000.

    This is the pipeline i followed & get errors in using GATK


    a) BWA ------> SAM output
    b) samtools ---> sortedindexedbamoutput
    c) picard ------> for readgroup replacement & removing duplicates
    d) GATK ----> for indelrealignment, BQSR, variant calling.


    when i give the following command for GATK-indel realignment, i get the error.

    U]cd used:-[/U]

    java -Xmx30g -jar GenomeAnalysisTK-2.6-5-gba531bd/GenomeAnalysisTK.jar -T IndelRealigner \ -R INDEX_REF_GENOME_HG19/hg19.fa \ -I WG_PBMC_SAM9_CORDSORT_RMDUP.BAM -targetintervals intervalListFromRTC.intervals \ -o WG_PBMC_SAM9_coordsort_realigned.bam


    the errors are :-



    ##### ERROR ------------------------------------------------------------------------------------------
    ##### ERROR A USER ERROR has occurred (version 2.6-5-gba531bd):
    ##### ERROR The invalid arguments or inputs must be corrected before the GATK can proceed
    ##### ERROR Please do not post this error to the GATK forum
    ##### ERROR
    ##### ERROR See the documentation (rerun with -h) for this tool to view allowable command-line arguments.
    ##### ERROR Visit our website and forum for extensive documentation and answers to
    ##### ERROR commonly asked questions http://www.broadinstitute.org/gatk
    ##### ERROR
    ##### ERROR MESSAGE: Argument with name '--targetIntervals' (-targetIntervals) is missing.
    ##### ERROR ------------------------------------------------------------------------------------------



    kindly give me solutions, will be very thankful to you.

    Please do let me know the proper usage of GATK.

    Thanking you all,

    Vishnu.

  • #2
    targetintervals intervalListFromRTC.intervals

    needs to be:

    targetIntervals intervalListFromRTC.intervals

    Comment


    • #3
      Hi sheenams,

      Thank you very much.

      I had tried using targetIntervals, but stil again it throws error as follows

      ##### ERROR MESSAGE: Couldn't read file Sample_WG-9/RAWFASTQ_CAT_FILES/intervalListFromRTC.intervals because The interval file does not exist.


      How should i proceed exactly with GATK .

      Guys and all members, i request all to help me using GATK with proper commands for indel realignment, BQSR and variant calling.

      Thank you,
      Vishnu.

      Comment


      • #4
        Hi Vishnu.. looks like the same error you had on the other thread.. sorry, I thought I'd replied to that but my post didn't register, internet here is quite flaky.

        so you tried with relative pathname (i.e. just the file name) and it crashed with

        ##### ERROR MESSAGE: Couldn't read file Sample_WG-9/RAWFASTQ_CAT_FILES/intervalListFromRTC.intervals because The interval file does not exist.

        It's looking in the current working directory for the file and finding it doesn't exist.

        And you tried (from other thread) full path

        and got

        ##### ERROR MESSAGE: Couldn't read file /data/odity/Project_Blood-GNPC-464/Sample_WG-9/RAWFASTQ_CAT_FILES/intervalListFromRTC.intervals because The interval file does not exist

        so maybe the path is wrong..

        what happens when you type

        ls /data/odity/Project_Blood-GNPC-464/Sample_WG-9/RAWFASTQ_CAT_FILES/intervalListFromRTC.intervals

        at the command line

        if it says..

        ls: cannot access /data/odity/Project_Blood-GNPC-464/Sample_WG-9/RAWFASTQ_CAT_FILES/intervalListFromRTC.intervals: No such file or directory

        then your path is wrong.

        And you can find the right one by doing..

        /data [HIT TAB KEY]

        /data/o [HIT TAB KEY]

        /data/odity/P [HIT TAB KEY]

        etc.. unix will tab complete the paths for you and you get the path correct.

        Comment


        • #5
          Hey whataBamBam,

          I had got your responses on other thread too.

          Actually, i didnt generate interval file,

          My question is how to generate an interval file.

          Kindly help me in generating an interval file by giving a proper command usage.

          Thank you in tons,
          Vishnu.

          Comment


          • #6
            Originally posted by vishnuamaram View Post
            Hey whataBamBam,

            I had got your responses on other thread too.

            Actually, i didnt generate interval file,

            My question is how to generate an interval file.

            Kindly help me in generating an interval file by giving a proper command usage.

            Thank you in tons,
            Vishnu.
            Did you read my reply to the same question in the other thread? If the RealignerTargetCreator command is itself giving errors, then you should just post those.

            Comment


            • #7
              Originally posted by vishnuamaram View Post
              Hi Seqanswers community,


              I am doing human whole genome sequence analysis, of the data obtained Illumina Hiseq 2000.

              This is the pipeline i followed & get errors in using GATK


              a) BWA ------> SAM output
              b) samtools ---> sortedindexedbamoutput
              c) picard ------> for readgroup replacement & removing duplicates
              d) GATK ----> for indelrealignment, BQSR, variant calling.


              when i give the following command for GATK-indel realignment, i get the error.

              U]cd used:-[/U]

              java -Xmx30g -jar GenomeAnalysisTK-2.6-5-gba531bd/GenomeAnalysisTK.jar -T IndelRealigner \ -R INDEX_REF_GENOME_HG19/hg19.fa \ -I WG_PBMC_SAM9_CORDSORT_RMDUP.BAM -targetintervals intervalListFromRTC.intervals \ -o WG_PBMC_SAM9_coordsort_realigned.bam


              the errors are :-



              ##### ERROR ------------------------------------------------------------------------------------------
              ##### ERROR A USER ERROR has occurred (version 2.6-5-gba531bd):
              ##### ERROR The invalid arguments or inputs must be corrected before the GATK can proceed
              ##### ERROR Please do not post this error to the GATK forum
              ##### ERROR
              ##### ERROR See the documentation (rerun with -h) for this tool to view allowable command-line arguments.
              ##### ERROR Visit our website and forum for extensive documentation and answers to
              ##### ERROR commonly asked questions http://www.broadinstitute.org/gatk
              ##### ERROR
              ##### ERROR MESSAGE: Argument with name '--targetIntervals' (-targetIntervals) is missing.
              ##### ERROR ------------------------------------------------------------------------------------------



              kindly give me solutions, will be very thankful to you.

              Please do let me know the proper usage of GATK.

              Thanking you all,

              Vishnu.

              You may follow this

              Comment


              • #8
                Originally posted by harryzs View Post
                -->(howto) Perform local realignment around indels

                Comment


                • #9
                  The informative line of that error message is:
                  ##### ERROR MESSAGE: Argument with name '--targetIntervals' (-targetIntervals) is missing.
                  Your command used "--targetintervals" (note the capital "I" in the error message).

                  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...
                    05-06-2024, 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:35 AM
                  0 responses
                  11 views
                  0 likes
                  Last Post seqadmin  
                  Started by seqadmin, Yesterday, 02:46 PM
                  0 responses
                  17 views
                  0 likes
                  Last Post seqadmin  
                  Started by seqadmin, 05-07-2024, 06:57 AM
                  0 responses
                  16 views
                  0 likes
                  Last Post seqadmin  
                  Started by seqadmin, 05-06-2024, 07:17 AM
                  0 responses
                  18 views
                  0 likes
                  Last Post seqadmin  
                  Working...
                  X