Mercurial > repos > matt-shirley > ncbi_sra_toolkit
annotate tool_dependencies.xml @ 25:393a04ec0fa9
Update tool requirement versions.
author | Matt Shirley <mdshw5@gmail.com> |
---|---|
date | Mon, 30 Mar 2015 21:57:40 -0400 |
parents | 22d9fe442c50 |
children | 7d80b2b24270 |
rev | line source |
---|---|
2 | 1 <?xml version="1.0"?> |
2 <tool_dependency> | |
11
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
3 <package name="sra_toolkit" version="2.4.5"> |
2 | 4 <install version="1.0"> |
14
ef71f5982df5
Should have linked the damn thing.
Matt Shirley <mdshw5@gmail.com>
parents:
13
diff
changeset
|
5 <actions> |
15
c71031b17e08
Avoid relative paths, and rename "ncbi" dir
Matt Shirley <mdshw5@gmail.com>
parents:
14
diff
changeset
|
6 <action type="make_directory">src</action> |
c71031b17e08
Avoid relative paths, and rename "ncbi" dir
Matt Shirley <mdshw5@gmail.com>
parents:
14
diff
changeset
|
7 <action type="make_directory">build</action> |
c71031b17e08
Avoid relative paths, and rename "ncbi" dir
Matt Shirley <mdshw5@gmail.com>
parents:
14
diff
changeset
|
8 <action type="change_directory">src</action> |
19 | 9 <action type="shell_command"> |
10 git clone https://github.com/mdshw5/sra-tools.git | |
11 git clone https://github.com/mdshw5/ncbi-vdb.git | |
12 git clone https://github.com/mdshw5/ngs.git | |
13 LD_LIBRARY_PATH=LD_LIBRARY_PATH:$INSTALL_DIR/lib64:$INSTALL_DIR/lib | |
22 | 14 cd $INSTALL_DIR/src/ncbi-vdb |
21 | 15 ./configure --prefix=$INSTALL_DIR --build-prefix=$INSTALL_DIR/build |
23 | 16 make |
21 | 17 make install |
24 | 18 cd $INSTALL_DIR/src/ngs/ngs-sdk |
21 | 19 ./configure --prefix=$INSTALL_DIR --build-prefix=$INSTALL_DIR/build |
23 | 20 make |
21 | 21 make install |
22 | 22 cd $INSTALL_DIR/src/sra-tools |
21 | 23 ./configure --prefix=$INSTALL_DIR --build-prefix=$INSTALL_DIR/build --with-ncbi-vdb-build=$INSTALL_DIR/build --with-ncbi-vdb-sources=$INSTALL_DIR/src/ncbi-vdb --with-ngs-sdk-prefix=$INSTALL_DIR |
23 | 24 make |
21 | 25 make install |
24 | 26 cd $INSTALL_DIR/bin |
27 ./vdb-config -s "cache-enabled = false" | |
19 | 28 </action> |
25
393a04ec0fa9
Update tool requirement versions.
Matt Shirley <mdshw5@gmail.com>
parents:
24
diff
changeset
|
29 <action type="set_environment"> |
393a04ec0fa9
Update tool requirement versions.
Matt Shirley <mdshw5@gmail.com>
parents:
24
diff
changeset
|
30 <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable> |
393a04ec0fa9
Update tool requirement versions.
Matt Shirley <mdshw5@gmail.com>
parents:
24
diff
changeset
|
31 </action> |
2 | 32 </actions> |
33 </install> | |
11
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
34 <readme> |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
35 Tools from NCBI SRA Toolkit for extracting FASTQ and SAM format reads from SRA format archives. |
7 | 36 This software release was designed to run under Linux, MacOSX operating systems on Intel x86-compatible 64 bit architectures. |
37 When running on Amazon EC2, be sure to keep in mind the size limitation of EBS storage devices when requesting a | |
2 | 38 download of a large SRA data set. |
39 | |
40 Build Requirements: | |
11
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
41 - make |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
42 - git |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
43 - gcc |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
44 - g++ |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
45 - libxml2 |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
46 - libcurl4 |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
47 - zlib |
7 | 48 |
2 | 49 On a debian based Linux OS use: |
50 | |
51 apt-get install build-essential libxml2-dev libcurl4-openssl-dev zlib-dev | |
11
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
52 |
2 | 53 </readme> |
54 </package> | |
55 </tool_dependency> |