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 Developments in Metagenomics
                    by seqadmin





                    Metagenomics has improved the way researchers study microorganisms across diverse environments. Historically, studying microorganisms relied on culturing them in the lab, a method that limits the investigation of many species since most are unculturable1. Metagenomics overcomes these issues by allowing the study of microorganisms regardless of their ability to be cultured or the environments they inhabit. Over time, the field has evolved, especially with the advent...
                    09-23-2024, 06:35 AM
                  • 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

                  ad_right_rmr

                  Collapse

                  News

                  Collapse

                  Topics Statistics Last Post
                  Started by seqadmin, Yesterday, 04:51 AM
                  0 responses
                  8 views
                  0 likes
                  Last Post seqadmin  
                  Started by seqadmin, 10-01-2024, 07:10 AM
                  0 responses
                  11 views
                  0 likes
                  Last Post seqadmin  
                  Started by seqadmin, 09-30-2024, 08:33 AM
                  0 responses
                  16 views
                  0 likes
                  Last Post seqadmin  
                  Started by seqadmin, 09-26-2024, 12:57 PM
                  0 responses
                  16 views
                  0 likes
                  Last Post seqadmin  
                  Working...
                  X