File: uclust

package info (click to toggle)
qiime 1.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 29,704 kB
  • sloc: python: 77,837; haskell: 379; sh: 113; makefile: 103
file content (32 lines) | stat: -rw-r--r-- 979 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh
#
# Added by Tim Booth <tbooth@ceh.ac.uk>
# Qiime wants very much to use the UClust binary, but this is not free software.
# However, it is available right now free-of-charge if:
#  a) You are an academic user and only want the 32-bit version.
#  b) You promise to use the UClust application only as part of Qiime.
#
# My plan is to put the no-cost UClust into bio-linux-qiime.  If someone
# installs just the reglar qiime package they need to know what to do...

# See if uclust.real is available.
if which uclust.real >/dev/null ; then
    exec uclust.real "$@"
fi

if [ `uname -m` = x86_64 ] ; then
    bits='64-bit'
else
    bits='32-bit'
fi

echo """\
UClust is not freely redistributable and is thus not included in the default Qiime package.

To use this feature, please go to:
    http://www.drive5.com/uclust/downloads1_2_22q.html

Download the $bits binary, then:
    sudo cp uclustq1.2.21_* /usr/local/bin/uclust
    sudo chmod a+x /usr/local/bin/uclust
"""