-
Notifications
You must be signed in to change notification settings - Fork 1
/
bowtie2.spec
49 lines (33 loc) · 1.24 KB
/
bowtie2.spec
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
%global alphatag beta5
Name: bowtie2
Version: 2.0.0
Release: 0.1.%{alphatag}%{?dist}
Summary: Fast and sensitive read alignment
License: GPLv3
URL: http://bowtie-bio.sourceforge.net/%{name}/index.shtml
Source0: %{name}-%{version}-%{alphatag}.zip
#BuildRequires:
%description
Bowtie 2 is an ultrafast and memory-efficient tool for
aligning sequencing reads to long reference sequences. It is
particularly good at aligning reads of about 50 up to 100s or 1,000s
of characters, and particularly good at aligning to relatively long
(e.g. mammalian) genomes. Bowtie 2 indexes the genome with an FM Index
to keep its memory footprint small: for the human genome, its memory
footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local,
and paired-end alignment modes.
%prep
%setup -q -n %{name}-%{version}-%{alphatag}
%build
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}%{_bindir}
install -m 0644 bowtie2* %{buildroot}%{_bindir}
%files
%doc AUTHORS NEWS TUTORIAL VERSION MANUAL MANUAL.markdown doc/ COPYING
%doc example scripts
%{_bindir}/bowtie2*
%changelog
* Mon Jan 9 2012 Adam Huffman <[email protected]> - 2.0.0-0.1.beta5%{?dist}
- initial version