Repository 'gatktools'
hg clone https://toolshed.g2.bx.psu.edu/repos/lz_hust/gatktools

Changeset 14:68426930d59c (2019-06-01)
Previous changeset 13:e4b6c7a08f06 (2019-06-01) Next changeset 15:01ff8dd37d4d (2019-06-01)
Commit message:
Deleted selected files
removed:
base_recalibrator.xml
depth_of_coverage.xml
gatk2_annotations.txt.sample
gatk2_macros.xml
gatk2_picard_index.loc.sample
tool_data_table_conf.xml.sample
b
diff -r e4b6c7a08f06 -r 68426930d59c base_recalibrator.xml
--- a/base_recalibrator.xml Sat Jun 01 07:12:31 2019 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
[
b'@@ -1,307 +0,0 @@\n-<tool id="gatk2_base_recalibrator" name="Base Recalibrator" version="@VERSION@.0">\n-  <description>calculates covariates used to recalibrate base quality scores of reads</description>\n-  <macros>\n-    <import>gatk2_macros.xml</import>\n-  </macros>\n-  <expand macro="requirements" />\n-  <expand macro="version_command" />\n-  <command interpreter="python">\n-    gatk2_wrapper.py\n-    --stdout "${output_log}"\n-    -d "-I" "${reference_source.input_bam}" "${reference_source.input_bam.ext}" "gatk_input"\n-    #if str( $reference_source.input_bam.metadata.bam_index ) != "None":\n-        -d "" "${reference_source.input_bam.metadata.bam_index}" "bam_index" "gatk_input" ##hardcode galaxy ext type as bam_index\n-    #end if\n-    -p \'\n-    @JAR_PATH@\n-    -T "BaseRecalibrator"\n-    \\$GATK2_SITE_OPTIONS\n-\n-    ## according to http://www.broadinstitute.org/gatk/guide/article?id=1975\n-    --num_cpu_threads_per_data_thread \\${GALAXY_SLOTS:-8}\n-\n-    ## we set non standards at every run and the user can choose which ones are preferred\n-    ## in our select box both standard options (ContextCovariate, CycleCovariate) are selected by default\n-    --no_standard_covs\n-\n-    #if $reference_source.reference_source_selector != "history":\n-        -R "${reference_source.ref_file.fields.path}"\n-    #end if\n-    #if str($input_recal) != \'None\':\n-        --BQSR "${input_recal}"\n-    #end if\n-    --out "${output_recal}"\n-    #if str( $covariates ) != "None":\n-        #for $cov in str( $covariates ).split( \',\' ):\n-            -cov "${cov}"\n-        #end for\n-    #end if\n-   \'\n-\n-    #set $snp_dataset_provided = False\n-    #set $rod_binding_names = dict()\n-    #for $rod_binding in $rod_bind:\n-        #if str( $rod_binding.rod_bind_type.rod_bind_type_selector ) == \'custom\':\n-            #set $rod_bind_name = $rod_binding.rod_bind_type.custom_rod_name\n-        #else\n-            #set $rod_bind_name = $rod_binding.rod_bind_type.rod_bind_type_selector\n-        #end if\n-        #if str( $rod_binding.rod_bind_type.rod_bind_type_selector ) == \'dbsnp\':\n-            #set $snp_dataset_provided = True\n-        #end if\n-        #set $rod_binding_names[$rod_bind_name] = $rod_binding_names.get( $rod_bind_name, -1 ) + 1\n-        -d "--knownSites:${rod_bind_name},%(file_type)s" "${rod_binding.rod_bind_type.input_rod}" "${rod_binding.rod_bind_type.input_rod.ext}" "input_${rod_bind_name}_${rod_binding_names[$rod_bind_name]}"\n-    #end for\n-\n-    #include source=$standard_gatk_options#\n-\n-    ##start analysis specific options\n-    #if $analysis_param_type.analysis_param_type_selector == "advanced":\n-        -p \'\n-        #if $analysis_param_type.default_read_group_type.default_read_group_type_selector == "set":\n-            --default_read_group "${analysis_param_type.default_read_group_type.default_read_group}"\n-        #end if\n-        #if str( $analysis_param_type.default_platform ) != "default":\n-            --default_platform "${analysis_param_type.default_platform}"\n-        #end if\n-        #if str( $analysis_param_type.force_read_group_type.force_read_group_type_selector ) == "set":\n-            --force_read_group "${analysis_param_type.force_read_group_type.force_read_group}"\n-        #end if\n-        #if str( $analysis_param_type.force_platform ) != "default":\n-            --force_platform "${analysis_param_type.force_platform}"\n-        #end if\n-        ${analysis_param_type.exception_if_no_tile}\n-        #if str( $analysis_param_type.solid_options_type.solid_options_type_selector ) == "set":\n-            #if str( $analysis_param_type.solid_options_type.solid_recal_mode ) != "default":\n-                --solid_recal_mode "${analysis_param_type.solid_options_type.solid_recal_mode}"\n-            #end if\n-            #if str( $analysis_param_type.solid_options_type.solid_nocall_strategy ) != "default":\n-                --solid_nocall_strategy "${analysis_param_type.solid_options_type.solid_nocall_strategy}"\n-            #end if\n-        #end if\n-       '..b'ned to work as the first pass in a two-pass processing step. It does a by-locus traversal operating only at sites that are not in dbSNP. We assume that all reference mismatches we see are therefore errors and indicative of poor base quality. This walker generates tables based on various user-specified covariates (such as read group, reported quality score, cycle, and dinucleotide) Since there is a large amount of data one can then calculate an empirical probability of error given the particular covariates seen at this site, where p(error) = num mismatches / num observations The output file is a CSV list of (the several covariate values, num observations, num mismatches, empirical quality score) The first non-comment line of the output file gives the name of the covariates that were used for this calculation.  Note: ReadGroupCovariate and QualityScoreCovariate are required covariates and will be added for the user regardless of whether or not they were specified Note: This walker is designed to be used in conjunction with TableRecalibrationWalker.\n-\n-For more information on base quality score recalibration using the GATK, see this `tool specific page &lt;http://www.broadinstitute.org/gatk/gatkdocs/org_broadinstitute_sting_gatk_walkers_bqsr_BaseRecalibrator.html&gt;`_.\n-\n-To learn about best practices for variant detection using GATK, see this `overview &lt;http://www.broadinstitute.org/gatk/guide/topic?name=best-practices&gt;`_.\n-\n-If you encounter errors, please view the `GATK FAQ &lt;http://www.broadinstitute.org/gatk/guide/topic?name=faqs&gt;`_.\n-\n-------\n-\n-**Inputs**\n-\n-GenomeAnalysisTK: BaseRecalibrator accepts an aligned BAM input file.\n-\n-\n-**Outputs**\n-\n-The output is in CSV format.\n-\n-\n-Go `here &lt;http://www.broadinstitute.org/gatk/guide/topic?name=intro&gt;`_ for details on GATK file formats.\n-\n--------\n-\n-**Settings**::\n-\n-\n- default_read_group                               If a read has no read group then default to the provided String.\n- default_platform                                 If a read has no platform then default to the provided String. Valid options are illumina, 454, and solid.\n- force_read_group                                 If provided, the read group ID of EVERY read will be forced to be the provided String. This is useful to collapse all data into a single read group.\n- force_platform                                   If provided, the platform of EVERY read will be forced to be the provided String. Valid options are illumina, 454, and solid.\n- window_size_nqs                                  The window size used by MinimumNQSCovariate for its calculation\n- homopolymer_nback                                The number of previous bases to look at in HomopolymerCovariate\n- exception_if_no_tile                             If provided, TileCovariate will throw an exception when no tile can be found. The default behavior is to use tile = -1\n- solid_recal_mode                                 How should we recalibrate solid bases in whichthe reference was inserted? Options = DO_NOTHING, SET_Q_ZERO, SET_Q_ZERO_BASE_N, or REMOVE_REF_BIAS (DO_NOTHING|SET_Q_ZERO|SET_Q_ZERO_BASE_N|REMOVE_REF_BIAS)\n- solid_nocall_strategy                            Defines the behavior of the recalibrator when it encounters no calls in the color space. Options = THROW_EXCEPTION, LEAVE_READ_UNRECALIBRATED, or PURGE_READ (THROW_EXCEPTION|LEAVE_READ_UNRECALIBRATED|PURGE_READ)\n- recal_file                                       Filename for the input covariates table recalibration .csv file\n- out                                              The output CSV file\n- standard_covs                                    Use the standard set of covariates in addition to the ones listed using the -cov argument\n- run_without_dbsnp_potentially_ruining_quality    If specified, allows the recalibrator to be used without a dbsnp rod. Very unsafe and for expert users only.\n-\n-@CITATION_SECTION@\n-  </help>\n-  <expand macro="citations" />\n-</tool>\n'
b
diff -r e4b6c7a08f06 -r 68426930d59c depth_of_coverage.xml
--- a/depth_of_coverage.xml Sat Jun 01 07:12:31 2019 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
[
b'@@ -1,731 +0,0 @@\n-<tool id="gatk2_depth_of_coverage" name="Depth of Coverage" version="@VERSION@.1">\n-  <description>on BAM files</description>\n-  <macros>\n-    <import>gatk2_macros.xml</import>\n-  </macros>\n-  <expand macro="requirements" />\n-  <expand macro="version_command" />\n-  <command interpreter="python">gatk2_wrapper.py\n-   ##--max_jvm_heap_fraction "1"\n-   --stdout "${output_log}"\n-   @BAM_INPUTS@\n-   -p \'\n-   @JAR_PATH@\n-    -T "DepthOfCoverage"\n-    \\$GATK2_SITE_OPTIONS\n-\n-    @THREADS@\n-\n-    #if $reference_source.reference_source_selector != "history":\n-        -R "${reference_source.ref_file.fields.path}"\n-    #end if\n-    #if str( $input_calculate_coverage_over_genes ) != "None":\n-        --calculateCoverageOverGenes "${input_calculate_coverage_over_genes}"\n-    #end if\n-    #if str( $partition_type ) != "None":\n-        #for $pt in str( $partition_type ).split( \',\' ):\n-            --partitionType "${pt}"\n-        #end for\n-    #end if\n-    --out "${output_per_locus_coverage}"\n-\n-    #for $ct_group in $summary_coverage_threshold_group:\n-        --summaryCoverageThreshold "${ct_group.summary_coverage_threshold}"\n-    #end for\n-    --outputFormat "${output_format}"\n-   \'\n-\n-    #include source=$standard_gatk_options#\n-    ##start analysis specific options\n-    #if $analysis_param_type.analysis_param_type_selector == "advanced":\n-        -p \'\n-        ${analysis_param_type.ignore_deletion_sites}\n-        ${analysis_param_type.include_deletions}\n-        --maxBaseQuality "${analysis_param_type.max_base_quality}"\n-        --maxMappingQuality "${analysis_param_type.max_mapping_quality}"\n-        --minBaseQuality "${analysis_param_type.min_base_quality}"\n-        --minMappingQuality "${analysis_param_type.min_mapping_quality}"\n-        --nBins "${analysis_param_type.n_bins}"\n-        ${analysis_param_type.omit_depth_output_at_each_base}\n-        ${analysis_param_type.omit_interval_statistics}\n-        ${analysis_param_type.omit_locus_table}\n-        ${analysis_param_type.omit_per_sample_stats}\n-        ${analysis_param_type.print_base_counts}\n-        ${analysis_param_type.print_bin_endpoints_and_exit}\n-        --start "${analysis_param_type.start}"\n-        --stop "${analysis_param_type.stop}"\n-        \'\n-    #end if\n-    ##Move additional files to final location\n-    #if str( $partition_type ) != "None":\n-       #set $partition_types = str( $partition_type ).split( \',\' )\n-    #else:\n-        #set $partition_types = [ \'sample\' ]\n-    #end if\n-    #if \'sample\' in $partition_types and ( str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.print_bin_endpoints_and_exit ) == "" ):\n-        #if str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_per_sample_stats ) == "":\n-            &amp;&amp; mv ${output_per_locus_coverage}.sample_summary ${output_summary_sample}\n-            &amp;&amp; mv ${output_per_locus_coverage}.sample_statistics ${output_statistics_sample}\n-        #end if\n-        #if $gatk_param_type.gatk_param_type_selector == "advanced" and len( $gatk_param_type.input_interval_repeat ) and ( str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_interval_statistics ) == "" ):\n-            &amp;&amp; mv ${output_per_locus_coverage}.sample_interval_summary ${output_interval_summary_sample}\n-            &amp;&amp; mv ${output_per_locus_coverage}.sample_interval_statistics ${output_interval_statistics_sample}\n-        #end if\n-        #if str( $input_calculate_coverage_over_genes ) != "None":\n-            &amp;&amp; mv ${output_per_locus_coverage}.sample_gene_summary ${output_gene_summary_sample}\n-            &amp;&amp; mv ${output_per_locus_coverage}.sample_gene_statistics ${output_gene_statistics_sample}\n-        #end if\n-        #if str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_depth_output_at_each_base ) == "":\n-  '..b'     <output name="output_cumulative_coverage_proportions_sample" file="gatk/gatk_depth_of_coverage/gatk_depth_of_coverage_out_1_output_output_cumulative_coverage_proportions_sample.tabular" />\n-          <output name="output_log" file="gatk/gatk_depth_of_coverage/gatk_depth_of_coverage_out_1.log.contains" compare="contains" />\n-      </test>\n-  </tests>\n-  <help>\n-**What it does**\n-\n-DepthOfCoverage processes a set of bam files to determine coverage at different levels of partitioning and aggregation. Coverage can be analyzed per locus, per interval, per gene, or in total; can be partitioned by sample, by read group, by technology, by center, or by library; and can be summarized by mean, median, quartiles, and/or percentage of bases covered to or beyond a threshold. Additionally, reads and bases can be filtered by mapping or base quality score.\n-\n-For more information on the GATK Depth of Coverage, see this `tool specific page &lt;http://www.broadinstitute.org/gatk/gatkdocs/org_broadinstitute_sting_gatk_walkers_coverage_DepthOfCoverage.html&gt;`_.\n-\n-To learn about best practices for variant detection using GATK, see this `overview &lt;http://www.broadinstitute.org/gatk/guide/topic?name=best-practices&gt;`_.\n-\n-If you encounter errors, please view the `GATK FAQ &lt;http://www.broadinstitute.org/gatk/guide/topic?name=faqs&gt;`_.\n-\n-------\n-\n-**Inputs**\n-\n-GenomeAnalysisTK: DepthOfCoverage accepts aligned BAM input files.\n-\n-\n-**Outputs**\n-\n-The output is in various table formats.\n-\n-\n-Go `here &lt;http://www.broadinstitute.org/gatk/guide/topic?name=intro&gt;`_ for details on GATK file formats.\n-\n--------\n-\n-**Settings**::\n-\n- calculateCoverageOverGenes     File     NA     Calculate the coverage statistics over this list of genes. Currently accepts RefSeq.\n- ignoreDeletionSites     boolean     false     Ignore sites consisting only of deletions\n- includeDeletions     boolean     false     Include information on deletions\n- maxBaseQuality     byte     127     Maximum quality of bases to count towards depth. Defaults to 127 (Byte.MAX_VALUE).\n- maxMappingQuality     int     2147483647     Maximum mapping quality of reads to count towards depth. Defaults to 2^31-1 (Integer.MAX_VALUE).\n- minBaseQuality     byte     -1     Minimum quality of bases to count towards depth. Defaults to -1.\n- minMappingQuality     int     -1     Minimum mapping quality of reads to count towards depth. Defaults to -1.\n- nBins     int     499     Number of bins to use for granular binning\n- omitDepthOutputAtEachBase     boolean     false     Will omit the output of the depth of coverage at each base, which should result in speedup\n- omitIntervalStatistics     boolean     false     Will omit the per-interval statistics section, which should result in speedup\n- omitLocusTable     boolean     false     Will not calculate the per-sample per-depth counts of loci, which should result in speedup\n- omitPerSampleStats     boolean     false     Omits the summary files per-sample. These statistics are still calculated, so this argument will not improve runtime.\n- outputFormat     String     rtable     the format of the output file (e.g. csv, table, rtable); defaults to r-readable table\n- partitionType     Set[Partition]     [sample]     Partition type for depth of coverage. Defaults to sample. Can be any combination of sample, readgroup, library.\n- printBaseCounts     boolean     false     Will add base counts to per-locus output.\n- printBinEndpointsAndExit     boolean     false     Prints the bin values and exits immediately. Use to calibrate what bins you want before running on data.\n- start     int     1     Starting (left endpoint) for granular binning\n- stop     int     500     Ending (right endpoint) for granular binning\n- summaryCoverageThreshold     int[]     [15]     for summary file outputs, report the % of bases coverd to >= this number. Defaults to 15; can take multiple arguments.\n-\n-@CITATION_SECTION@\n-  </help>\n-  <expand macro="citations" />\n-</tool>\n'
b
diff -r e4b6c7a08f06 -r 68426930d59c gatk2_annotations.txt.sample
--- a/gatk2_annotations.txt.sample Sat Jun 01 07:12:31 2019 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
b
@@ -1,26 +0,0 @@
-#unique_id name gatk_value tools_valid_for
-AlleleBalance AlleleBalance AlleleBalance UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-AlleleBalanceBySample AlleleBalanceBySample AlleleBalanceBySample UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-BaseCounts BaseCounts BaseCounts UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-BaseQualityRankSumTest BaseQualityRankSumTest BaseQualityRankSumTest UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-ChromosomeCounts ChromosomeCounts ChromosomeCounts UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-Coverage Coverage Coverage UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-DepthPerAlleleBySample DepthPerAlleleBySample DepthPerAlleleBySample UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-FisherStrand FisherStrand FisherStrand UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-GCContent GCContent GCContent UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-HaplotypeScore HaplotypeScore HaplotypeScore UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-HardyWeinberg HardyWeinberg HardyWeinberg UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-HomopolymerRun HomopolymerRun HomopolymerRun UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-InbreedingCoeff InbreedingCoeff InbreedingCoeff UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-LowMQ LowMQ LowMQ UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-MVLikelihoodRatio MVLikelihoodRatio MVLikelihoodRatio VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-MappingQualityRankSumTest MappingQualityRankSumTest MappingQualityRankSumTest UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-MappingQualityZero MappingQualityZero MappingQualityZero UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-MappingQualityZeroBySample MappingQualityZeroBySample MappingQualityZeroBySample UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-NBaseCount NBaseCount NBaseCount UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-QualByDepth QualByDepth QualByDepth UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-RMSMappingQuality RMSMappingQuality RMSMappingQuality UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-ReadPosRankSumTest ReadPosRankSumTest ReadPosRankSumTest UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-SampleList SampleList SampleList UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-SnpEff SnpEff SnpEff VariantAnnotator,VariantRecalibrator,HaplotypeCaller
-SpanningDeletions SpanningDeletions SpanningDeletions UnifiedGenotyper,VariantAnnotator,VariantRecalibrator,HaplotypeCaller
b
diff -r e4b6c7a08f06 -r 68426930d59c gatk2_macros.xml
--- a/gatk2_macros.xml Sat Jun 01 07:12:31 2019 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
[
b'@@ -1,379 +0,0 @@\n-<macros>\n-  <xml name="requirements">\n-    <requirements>\n-      <requirement type="package">gatk2</requirement>\n-      <requirement type="package" version="0.1.19">samtools</requirement>\n-      <requirement type="package" version="1.56.0">picard</requirement>\n-      <requirement type="set_environment">GATK2_PATH</requirement>\n-      <requirement type="set_environment">GATK2_SITE_OPTIONS</requirement>\n-      <yield />\n-    </requirements>\n-  </xml>\n-  <xml name="version_command">\n-    <version_command>java -jar "$GATK2_PATH/GenomeAnalysisTK.jar" --help|grep \'^The Genome\'</version_command>\n-  </xml>\n-  <token name="@THREADS@">\n-    --num_threads \\${GALAXY_SLOTS:-4}\n-  </token>\n-  <token name="@VERSION@">2.8</token>\n-  <token name="@JAR_PATH@">\n-    java -jar "\\$GATK2_PATH/GenomeAnalysisTK.jar"\n-  </token>\n-  <token name="@DBSNP_OPTIONS@">\n-    #if $dbsnp_rod_bind_type.dbsnp_rod_bind_type_selector == \'set_dbsnp\'\n-        -d "--dbsnp:${dbsnp_rod_bind_type.dbsnp_rod_name},%(file_type)s" "${dbsnp_rod_bind_type.dbsnp_input_rod}" "${dbsnp_rod_bind_type.dbsnp_input_rod.ext}" "input_dbsnp_${dbsnp_rod_bind_type.dbsnp_rod_name}"\n-    #end if\n-  </token>\n-  <token name="@BAM_INPUTS@">\n-   #for $i, $input_bam in enumerate( $reference_source.input_bams ):\n-       -d "-I" "${input_bam}" "${input_bam.ext}" "gatk_input_${i}"\n-       #if str( $input_bam.metadata.bam_index ) != "None":\n-           -d "" "${input_bam.metadata.bam_index}" "bam_index" "gatk_input_${i}" ##hardcode galaxy ext type as bam_index\n-       #end if\n-   #end for\n-  </token>\n-  <xml name="input_variants" token_help="-input,--input &amp;lt;input&amp;gt;">\n-    <param name="input_variants" type="data" format="vcf" label="Variant file to annotate" multiple="True" min="1" help="@HELP@"/>\n-  </xml>\n-  <xml name="input_bams_history">\n-    <param name="input_bams" type="data" format="bam" label="BAM file" multiple="True" min="1" help="-I,--input_file &amp;lt;input_file&amp;gt;"/>\n-  </xml>\n-  <xml name="input_bams_cached">\n-    <param name="input_bams" type="data" format="bam" label="BAM file" multiple="True" min="1" help="-I,--input_file &amp;lt;input_file&amp;gt;">\n-      <validator type="unspecified_build" />\n-      <validator type="dataset_metadata_in_data_table" table_name="gatk2_picard_indexes" metadata_name="dbkey" metadata_column="dbkey" message="Sequences are not currently available for the specified build." /> <!-- fixme!!! this needs to be a select -->\n-    </param>\n-  </xml>\n-  <template name="standard_gatk_options">\n-    ##start standard gatk options\n-    #if $gatk_param_type.gatk_param_type_selector == "advanced":\n-        #for $pedigree in $gatk_param_type.pedigree_files:\n-            -p \'--pedigree "${pedigree}"\'\n-        #end for\n-        #for $pedigree_string in $gatk_param_type.pedigree_string_repeat:\n-            -p \'--pedigreeString "${pedigree_string.pedigree_string}"\'\n-        #end for\n-        -p \'--pedigreeValidationType "${gatk_param_type.pedigree_validation_type}"\'\n-        #set default_read_filters = [\'MalformedRead\']\n-        #for $read_filter in $gatk_param_type.read_filter:\n-            -p \'\n-            #if $read_filter.read_filter_type.read_filter_type_selector not in $default_read_filters:\n-                --read_filter "${read_filter.read_filter_type.read_filter_type_selector}"\n-            #end if\n-            #for $name, $param in $read_filter.read_filter_type.iteritems():\n-                #if $name not in [ "__current_case__", "read_filter_type_selector" ]:\n-                    #if hasattr( $param.input, \'truevalue\' ):\n-                        ${param}\n-                    #else:\n-                        --${name} "${param}"\n-                    #end if\n-                #end if\n-            #end for\n-            \'\n-        #end for\n-        #for $interval_count, $input_interval in enumerate( $gatk_param_type.input_intervals ):\n-            -d "--intervals" "${input_interval}" "${input_interval.ext}" "input_intervals_${interv'..b'name="read_group_black_list" type="text" value="tag:string" label="Read group black list tag:string" />\n-            </when>\n-          </conditional>\n-        </repeat>\n-\n-        <param name="disable_experimental_low_memory_sharding" type="boolean" truevalue="--disable_experimental_low_memory_sharding" falsevalue="" label="Disable experimental low-memory sharding functionality." checked="False" help="--disable_experimental_low_memory_sharding"/>\n-        <param name="non_deterministic_random_seed" type="boolean" truevalue="--nonDeterministicRandomSeed" falsevalue="" label="Makes the GATK behave non deterministically, that is, the random numbers generated will be different in every run" checked="False"  help="-ndrs,--nonDeterministicRandomSeed"/>\n-        <param name="fix_misencoded_quality_scores" type="boolean" truevalue="--fix_misencoded_quality_scores" falsevalue="" label="Fix mis-encoded base quality scores. Q0 == ASCII 33 according to the SAM specification, whereas Illumina encoding starts at Q64. The idea here is simple: we just iterate over all reads and subtract 31 from every quality score." checked="False"  help="-fixMisencodedQuals / --fix_misencoded_quality_scores"/>\n-\n-      </when>\n-    </conditional>\n-  </xml>\n-  <xml name="analysis_type_conditional">\n-    <conditional name="analysis_param_type">\n-      <param name="analysis_param_type_selector" type="select" label="Basic or Advanced Analysis options">\n-        <option value="basic" selected="True">Basic</option>\n-        <option value="advanced">Advanced</option>\n-      </param>\n-      <when value="basic">\n-        <!-- Do nothing here -->\n-      </when>\n-      <when value="advanced">\n-        <yield />\n-      </when>\n-    </conditional>\n-  </xml>\n-  <xml name="reference_source_selector_param">\n-    <param name="reference_source_selector" type="select" label="Choose the source for the reference list">\n-      <option value="cached">Locally cached</option>\n-      <option value="history">History</option>\n-    </param>\n-  </xml>\n-\n-  <xml name="allow_n_cigar_reads">\n-    <param name="allow_n_cigar_reads" type="boolean" truevalue="-U ALLOW_N_CIGAR_READS" falsevalue=""\n-        label="Allow N in CIGAR strings" help="This is required for RNA-seq data. (-U ALLOW_N_CIGAR_READS)" />\n-  </xml>\n-\n-  <xml name="dbsnp_param">\n-    <conditional name="dbsnp_rod_bind_type">\n-      <param name="dbsnp_rod_bind_type_selector" type="select" label="Provide a dbSNP Reference-Ordered Data (ROD) file" help="-D,--dbsnp &amp;lt;dbsnp&amp;gt;">\n-        <option value="set_dbsnp" selected="True">Set dbSNP</option>\n-        <option value="exclude_dbsnp">Don\'t set dbSNP</option>\n-      </param>\n-      <when value="exclude_dbsnp" />\n-      <when value="set_dbsnp">\n-        <param name="dbsnp_input_rod" type="data" format="vcf" label="dbSNP ROD file" />\n-        <param name="dbsnp_rod_name" type="text" value="dbsnp" label="dbsnp ROD name">\n-          <validator type="regex" message="Value must be a not empty string composed by alphanumeric characters and underscores">^\\w+$</validator>\n-        </param>\n-      </when>\n-    </conditional>\n-  </xml>\n-  <token name="@CITATION_SECTION@">------\n-\n-**Citation**\n-\n-For the underlying tool, please cite `DePristo MA, Banks E, Poplin R, Garimella KV, Maguire JR, Hartl C, Philippakis AA, del Angel G, Rivas MA, Hanna M, McKenna A, Fennell TJ, Kernytsky AM, Sivachenko AY, Cibulskis K, Gabriel SB, Altshuler D, Daly MJ. A framework for variation discovery and genotyping using next-generation DNA sequencing data. Nat Genet. 2011 May;43(5):491-8. &lt;http://www.ncbi.nlm.nih.gov/pubmed/21478889&gt;`_\n-\n-If you use this tool in Galaxy, please cite Blankenberg D, et al. *In preparation.*\n-\n-  </token>\n-  <xml name="citations">\n-    <citations>\n-      <citation type="doi">10.1038/ng.806</citation>\n-      <citation type="doi">10.1101/gr.107524.110</citation>\n-      <citation type="doi">10.1002/0471250953.bi1110s43</citation>\n-    </citations>\n-  </xml>\n-</macros>\n'
b
diff -r e4b6c7a08f06 -r 68426930d59c gatk2_picard_index.loc.sample
--- a/gatk2_picard_index.loc.sample Sat Jun 01 07:12:31 2019 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
b
@@ -1,26 +0,0 @@
-#This is a sample file distributed with Galaxy that enables tools
-#to use a directory of Picard dict and associated files. You will need
-#to create these data files and then create a picard_index.loc file 
-#similar to this one (store it in this directory) that points to 
-#the directories in which those files are stored. The picard_index.loc 
-#file has this format (longer white space is the TAB character):
-#
-#<unique_build_id> <dbkey> <display_name> <fasta_file_path>
-#
-#So, for example, if you had hg18 indexed and stored in 
-#/depot/data2/galaxy/srma/hg18/,
-#then the srma_index.loc entry would look like this:
-#
-#hg18 hg18 hg18 Pretty /depot/data2/galaxy/picard/hg18/hg18.fa
-#
-#and your /depot/data2/galaxy/srma/hg18/ directory
-#would contain the following three files:
-#hg18.fa
-#hg18.dict
-#hg18.fa.fai
-#
-#The dictionary file for each reference (ex. hg18.dict) must be 
-#created via Picard (http://picard.sourceforge.net). Note that
-#the dict file does not have the .fa extension although the
-#path list in the loc file does include it.
-#
b
diff -r e4b6c7a08f06 -r 68426930d59c tool_data_table_conf.xml.sample
--- a/tool_data_table_conf.xml.sample Sat Jun 01 07:12:31 2019 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
b
@@ -1,12 +0,0 @@
-<tables>
-    <!-- Location of Picard dict files valid for GATK -->
-    <table name="gatk2_picard_indexes" comment_char="#" allow_duplicate_entries="False">
-        <columns>value, dbkey, name, path</columns>
-        <file path="tool-data/gatk2_picard_index.loc" />
-    </table>
-    <!-- Available of GATK references -->
-    <table name="gatk2_annotations" comment_char="#" allow_duplicate_entries="False">
-        <columns>value, name, gatk_value, tools_valid_for</columns>
-        <file path="tool-data/gatk2_annotations.txt" />
-    </table>
-</tables>