File: uclust

package info (click to toggle)
qiime 2024.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,688 kB
  • sloc: python: 31,045; sh: 96; makefile: 31
file content (33 lines) | stat: -rw-r--r-- 988 bytes parent folder | download | duplicates (4)
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
33
#!/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 """\r\
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.22_* /usr/local/bin/uclust
    sudo chmod a+x /usr/local/bin/uclust
"""
exit 1