Mercurial > repos > matt-shirley > ncbi_sra_toolkit
annotate tool_dependencies.xml @ 29:ce2bb7841f17 default tip
Fix for https://github.com/mdshw5/sra-tools-galaxy/issues/1
author | Matt Shirley <mdshw5@gmail.com> |
---|---|
date | Tue, 07 Apr 2015 09:09:23 -0400 |
parents | 7d80b2b24270 |
children |
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 |
26
7d80b2b24270
Set config values for caching.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
27 ./vdb-config -s "/repository/user/main/public/cache-enabled=false" |
7d80b2b24270
Set config values for caching.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
28 ./vdb-config -s "/repository/user/main/public/root=$INSTALL_DIR" |
19 | 29 </action> |
25
393a04ec0fa9
Update tool requirement versions.
Matt Shirley <mdshw5@gmail.com>
parents:
24
diff
changeset
|
30 <action type="set_environment"> |
393a04ec0fa9
Update tool requirement versions.
Matt Shirley <mdshw5@gmail.com>
parents:
24
diff
changeset
|
31 <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
|
32 </action> |
2 | 33 </actions> |
34 </install> | |
11
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
35 <readme> |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
36 Tools from NCBI SRA Toolkit for extracting FASTQ and SAM format reads from SRA format archives. |
7 | 37 This software release was designed to run under Linux, MacOSX operating systems on Intel x86-compatible 64 bit architectures. |
38 When running on Amazon EC2, be sure to keep in mind the size limitation of EBS storage devices when requesting a | |
2 | 39 download of a large SRA data set. |
40 | |
41 Build Requirements: | |
11
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
42 - make |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
43 - git |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
44 - gcc |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
45 - g++ |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
46 - libxml2 |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
47 - libcurl4 |
91558de676f4
Update to latest toolkit version - fix installation issues.
Matt Shirley <mdshw5@gmail.com>
parents:
10
diff
changeset
|
48 - zlib |
7 | 49 |
2 | 50 On a debian based Linux OS use: |
51 | |
52 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
|
53 |
2 | 54 </readme> |
55 </package> | |
56 </tool_dependency> |