Mercurial > repos > jjohnson > gatk2
annotate tool_dependencies.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 | 35c6289faeff |
| children | 09e6427d3e6a |
| rev | line source |
|---|---|
| 0 | 1 <?xml version="1.0"?> |
| 2 <tool_dependency> | |
|
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
15
diff
changeset
|
3 <package name="gatk" version="2.3"> |
| 0 | 4 <install version="1.0"> |
| 5 <actions> | |
|
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
15
diff
changeset
|
6 <action type="download_by_url">ftp://ftp.broadinstitute.org/pub/gsa/GenomeAnalysisTK/GenomeAnalysisTKLite-2.3-4-gb8f1308.tar.bz2</action> |
| 0 | 7 <action type="move_file"> |
|
15
35c6289faeff
Update tool_dependecies to GenomeAnalysisTKLite-2.2-8-g99996f2.tar.bz2
Jim Johnson <jj@umn.edu>
parents:
9
diff
changeset
|
8 <source>GenomeAnalysisTKLite.jar</source> |
|
2
a65944bad5c1
tool_dependencies.xml - fix move_file and add symlink
Jim Johnson <jj@umn.edu>
parents:
1
diff
changeset
|
9 <destination>$INSTALL_DIR</destination> |
| 0 | 10 </action> |
|
3
0edf813146d8
tool_dependencies.xml - fix move_file and add symlink
Jim Johnson <jj@umn.edu>
parents:
2
diff
changeset
|
11 <action type="shell_command">ln -s GenomeAnalysisTKLite.jar GenomeAnalysisTK.jar</action> |
|
0edf813146d8
tool_dependencies.xml - fix move_file and add symlink
Jim Johnson <jj@umn.edu>
parents:
2
diff
changeset
|
12 <action type="move_file"> |
|
0edf813146d8
tool_dependencies.xml - fix move_file and add symlink
Jim Johnson <jj@umn.edu>
parents:
2
diff
changeset
|
13 <source>GenomeAnalysisTK.jar</source> |
|
0edf813146d8
tool_dependencies.xml - fix move_file and add symlink
Jim Johnson <jj@umn.edu>
parents:
2
diff
changeset
|
14 <destination>$INSTALL_DIR</destination> |
|
0edf813146d8
tool_dependencies.xml - fix move_file and add symlink
Jim Johnson <jj@umn.edu>
parents:
2
diff
changeset
|
15 </action> |
| 0 | 16 <action type="set_environment"> |
| 17 <environment_variable name="GATK2_PATH" action="set_to">$INSTALL_DIR</environment_variable> | |
|
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
15
diff
changeset
|
18 <environment_variable name="GATK2_SITE_OPTIONS" action="set_to">"--phone_home STANDARD"</environment_variable> |
|
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
15
diff
changeset
|
19 <environment_variable name="GATK2_THREAD_OPTIONS" action="set_to">"--num_threads 4 --num_cpu_threads_per_data_thread 3"</environment_variable> |
| 0 | 20 </action> |
| 21 </actions> | |
| 22 </install> | |
| 23 <readme> | |
| 24 The following GATK2 analysis types require a License for commercial use and the full GATK2 build will need to be manually installed: | |
| 25 | |
| 26 haplotypecaller | |
| 27 HaplotypeCaller Call SNPs and indels simultaneously via local de-novo assembly of haplotypes in an | |
| 28 active region. | |
| 29 HaplotypeResolver Haplotype-based resolution of variants in 2 different eval files. | |
| 30 | |
| 31 reducereads | |
| 32 CompareBAM Given two BAMs with different read groups, it compares them based on ReduceReads | |
| 33 metrics. | |
| 34 ReduceReads Reduces the BAM file using read based compression that keeps only essential information | |
| 35 for variant calling | |
| 36 | |
| 37 | |
| 38 See: http://www.appistry.com/gatk/gatk-faqs-static for Licensing details. | |
| 39 The full GATK build can be acquired from: http://www.broadinstitute.org/gatk/download | |
| 40 and GenomeAnalysisTK.jar need to be manually installed into the GATK2_PATH set for the GenomeAnalysisTKLite.jar | |
| 41 | |
| 42 The GATK2_SITE_OPTIONS environment variable can be modified in the env.sh in the tool_dependencies path can be modified | |
| 43 for the local installation. | |
| 44 | |
| 45 </readme> | |
| 46 </package> | |
| 47 <package name="samtools" version="0.1.18"> | |
| 48 <install version="1.0"> | |
| 49 <actions> | |
| 50 <action type="download_by_url">http://sourceforge.net/projects/samtools/files/samtools/0.1.18/samtools-0.1.18.tar.bz2</action> | |
| 51 <action type="shell_command">sed -i.bak -e 's/-lcurses/-lncurses/g' Makefile</action> | |
| 52 <action type="shell_command">make</action> | |
| 53 <action type="move_file"> | |
| 54 <source>samtools</source> | |
| 55 <destination>$INSTALL_DIR/bin</destination> | |
| 56 </action> | |
| 57 <action type="move_file"> | |
| 58 <source>misc/maq2sam-long</source> | |
| 59 <destination>$INSTALL_DIR/bin</destination> | |
| 60 </action> | |
| 61 <action type="set_environment"> | |
| 62 <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable> | |
| 63 </action> | |
| 64 </actions> | |
| 65 </install> | |
| 66 <readme> | |
| 67 Compiling SAMtools requires the ncurses and zlib development libraries. | |
| 68 </readme> | |
| 69 </package> | |
| 70 </tool_dependency> |
