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