-
Notifications
You must be signed in to change notification settings - Fork 1
/
cufflinks-bin.spec
62 lines (44 loc) · 1.6 KB
/
cufflinks-bin.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
49
50
51
52
53
54
55
56
57
58
59
60
61
%global tarname "cufflinks"
%global debug_package %{nil}
Name: cufflinks-bin
Version: 1.0.3
Release: 1%{?dist}
Summary: RNA-Seq transcript assembly, differential expression/regulation
Group: Applications/Engineering
License: Boost
URL: http://cufflinks.cbcb.umd.edu/
Source0: http://cufflinks.cbcb.umd.edu/downloads/cufflinks-1.0.3.Linux_x86_64.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
Cufflinks assembles transcripts, estimates their abundances, and tests
for differential expression and regulation in RNA-Seq samples. It
accepts aligned RNA-Seq reads and assembles the alignments into a
parsimonious set of transcripts. Cufflinks then estimates the relative
abundances of these transcripts based on how many reads support each
one.
Cufflinks is a collaborative effort between the Laboratory for
Mathematical and Computational Biology, led by Lior Pachter at UC
Berkeley, Steven Salzberg's group at the University of Maryland Center
for Bioinformatics and Computational Biology, and Barbara Wold's lab
at Caltech.
This is a binary-only package.
%prep
%setup -q -n %tarname-%{version}.Linux_x86_64
%build
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}%{_bindir}
install -m 0755 cuff* %{buildroot}%{_bindir}
install -m 0755 gffread %{buildroot}%{_bindir}
install -m 0755 gtf_to_sam %{buildroot}%{_bindir}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc README LICENSE AUTHORS
%{_bindir}/cuff*
%{_bindir}/gffread
%{_bindir}/gtf_to_sam
%changelog
* Mon Aug 22 2011 Adam Huffman <[email protected]> - 1.0.3-1
- initial version of binary package