comparison realigner_target_creator.xml @ 18:7533db8dfb5b draft

Update tool_dependencies to GATK v 2.3
author Jim Johnson <jj@umn.edu>
date Thu, 20 Dec 2012 11:01:55 -0600
parents 74c05070a3f8
children d1a88bdaa80a
comparison
equal deleted inserted replaced
17:f2b21dc45241 18:7533db8dfb5b
1 <tool id="gatk2_realigner_target_creator" name="Realigner Target Creator" version="0.0.4"> 1 <tool id="gatk2_realigner_target_creator" name="Realigner Target Creator" version="0.0.5">
2 <description>for use in local realignment</description> 2 <description>for use in local realignment</description>
3 <requirements> 3 <requirements>
4 <requirement type="package" version="2.2">gatk</requirement> 4 <requirement type="package" version="2.3">gatk</requirement>
5 <requirement type="package" version="0.1.18">samtools</requirement> 5 <requirement type="package" version="0.1.18">samtools</requirement>
6 </requirements> 6 </requirements>
7 <command interpreter="python">gatk2_wrapper.py 7 <command interpreter="python">gatk2_wrapper.py
8 --max_jvm_heap_fraction "1" 8 --max_jvm_heap_fraction "1"
9 --stdout "${output_log}" 9 --stdout "${output_log}"
14 -p 'java 14 -p 'java
15 -jar "\$GATK2_PATH/GenomeAnalysisTK.jar" 15 -jar "\$GATK2_PATH/GenomeAnalysisTK.jar"
16 -T "RealignerTargetCreator" 16 -T "RealignerTargetCreator"
17 -o "${output_interval}" 17 -o "${output_interval}"
18 \$GATK2_SITE_OPTIONS 18 \$GATK2_SITE_OPTIONS
19 \$GATK2_THREAD_OPTIONS
19 ##-et "NO_ET" -K "/data/galaxy/appList/GenomeAnalysisTK-2.0-36-gf5c1c1a/gatk2_key_file" ##ET no phone home 20 ##-et "NO_ET" -K "/data/galaxy/appList/GenomeAnalysisTK-2.0-36-gf5c1c1a/gatk2_key_file" ##ET no phone home
20 ##--num_threads 4 ##hard coded, for now 21 ##--num_threads 4 ##hard coded, for now
21 ##-log "${output_log}" ##don't use this to log to file, instead directly capture stdout 22 ##-log "${output_log}" ##don't use this to log to file, instead directly capture stdout
22 #if $reference_source.reference_source_selector != "history": 23 #if $reference_source.reference_source_selector != "history":
23 -R "${reference_source.ref_file.fields.path}" 24 -R "${reference_source.ref_file.fields.path}"
77 ${gatk_param_type.use_original_qualities} 78 ${gatk_param_type.use_original_qualities}
78 --defaultBaseQualities "${gatk_param_type.default_base_qualities}" 79 --defaultBaseQualities "${gatk_param_type.default_base_qualities}"
79 --validation_strictness "${gatk_param_type.validation_strictness}" 80 --validation_strictness "${gatk_param_type.validation_strictness}"
80 --interval_merging "${gatk_param_type.interval_merging}" 81 --interval_merging "${gatk_param_type.interval_merging}"
81 ${gatk_param_type.disable_experimental_low_memory_sharding} 82 ${gatk_param_type.disable_experimental_low_memory_sharding}
83 ${gatk_param_type.fix_misencoded_quality_scores}
82 ${gatk_param_type.non_deterministic_random_seed} 84 ${gatk_param_type.non_deterministic_random_seed}
83 ' 85 '
84 #for $rg_black_list_count, $rg_black_list in enumerate( $gatk_param_type.read_group_black_list_repeat ): 86 #for $rg_black_list_count, $rg_black_list in enumerate( $gatk_param_type.read_group_black_list_repeat ):
85 #if $rg_black_list.read_group_black_list_type.read_group_black_list_type_selector == "file": 87 #if $rg_black_list.read_group_black_list_type.read_group_black_list_type_selector == "file":
86 -d "--read_group_black_list" "${rg_black_list.read_group_black_list_type.read_group_black_list}" "txt" "input_read_group_black_list_${rg_black_list_count}" 88 -d "--read_group_black_list" "${rg_black_list.read_group_black_list_type.read_group_black_list}" "txt" "input_read_group_black_list_${rg_black_list_count}"
361 </conditional> 363 </conditional>
362 </repeat> 364 </repeat>
363 365
364 <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"/> 366 <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"/>
365 <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"/> 367 <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"/>
368 <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"/>
366 369
367 </when> 370 </when>
368 </conditional> 371 </conditional>
369 372
370 <conditional name="analysis_param_type"> 373 <conditional name="analysis_param_type">