Mercurial > repos > jjohnson > gatk2
comparison variant_combine.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 | 6ef8eb568700 |
comparison
equal
deleted
inserted
replaced
17:f2b21dc45241 | 18:7533db8dfb5b |
---|---|
1 <tool id="gatk2_variant_combine" name="Combine Variants" version="0.0.4"> | 1 <tool id="gatk2_variant_combine" name="Combine Variants" version="0.0.5"> |
2 <description></description> | 2 <description></description> |
3 <requirements> | 3 <requirements> |
4 <requirement type="package" version="2.2">gatk</requirement> | 4 <requirement type="package" version="2.3">gatk</requirement> |
5 </requirements> | 5 </requirements> |
6 <command interpreter="python">gatk2_wrapper.py | 6 <command interpreter="python">gatk2_wrapper.py |
7 --max_jvm_heap_fraction "1" | 7 --max_jvm_heap_fraction "1" |
8 --stdout "${output_log}" | 8 --stdout "${output_log}" |
9 | 9 |
17 -p 'java | 17 -p 'java |
18 -jar "\$GATK2_PATH/GenomeAnalysisTK.jar" | 18 -jar "\$GATK2_PATH/GenomeAnalysisTK.jar" |
19 -T "CombineVariants" | 19 -T "CombineVariants" |
20 --out "${output_variants}" | 20 --out "${output_variants}" |
21 \$GATK2_SITE_OPTIONS | 21 \$GATK2_SITE_OPTIONS |
22 \$GATK2_THREAD_OPTIONS | |
22 ##--num_threads 4 ##hard coded, for now | 23 ##--num_threads 4 ##hard coded, for now |
23 ##-et "NO_ET" -K "\$GATK2_BASE/gatk2_key_file" ##ET no phone home | 24 ##-et "NO_ET" -K "\$GATK2_BASE/gatk2_key_file" ##ET no phone home |
24 ##-log "${output_log}" ##don't use this to log to file, instead directly capture stdout | 25 ##-log "${output_log}" ##don't use this to log to file, instead directly capture stdout |
25 #if $reference_source.reference_source_selector != "history": | 26 #if $reference_source.reference_source_selector != "history": |
26 -R "${reference_source.ref_file.fields.path}" | 27 -R "${reference_source.ref_file.fields.path}" |
72 ${gatk_param_type.use_original_qualities} | 73 ${gatk_param_type.use_original_qualities} |
73 --defaultBaseQualities "${gatk_param_type.default_base_qualities}" | 74 --defaultBaseQualities "${gatk_param_type.default_base_qualities}" |
74 --validation_strictness "${gatk_param_type.validation_strictness}" | 75 --validation_strictness "${gatk_param_type.validation_strictness}" |
75 --interval_merging "${gatk_param_type.interval_merging}" | 76 --interval_merging "${gatk_param_type.interval_merging}" |
76 ${gatk_param_type.disable_experimental_low_memory_sharding} | 77 ${gatk_param_type.disable_experimental_low_memory_sharding} |
78 ${gatk_param_type.fix_misencoded_quality_scores} | |
77 ${gatk_param_type.non_deterministic_random_seed} | 79 ${gatk_param_type.non_deterministic_random_seed} |
78 ' | 80 ' |
79 #for $rg_black_list_count, $rg_black_list in enumerate( $gatk_param_type.read_group_black_list_repeat ): | 81 #for $rg_black_list_count, $rg_black_list in enumerate( $gatk_param_type.read_group_black_list_repeat ): |
80 #if $rg_black_list.read_group_black_list_type.read_group_black_list_type_selector == "file": | 82 #if $rg_black_list.read_group_black_list_type.read_group_black_list_type_selector == "file": |
81 -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}" | 83 -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}" |
352 </conditional> | 354 </conditional> |
353 </repeat> | 355 </repeat> |
354 | 356 |
355 <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"/> | 357 <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"/> |
356 <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"/> | 358 <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"/> |
359 <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"/> | |
357 | 360 |
358 </when> | 361 </when> |
359 </conditional> | 362 </conditional> |
360 | 363 |
361 | 364 |