diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-31 04:46:02 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-31 04:46:02 +0000 |
commit | a7f65a9d7a2c4fe9a3b1548f252abb79adb403a6 (patch) | |
tree | d3ac42e9eedd63a03d4e4a3062b2a1f660b5dd37 /python-nanocount.spec | |
parent | d0cbaf024a997385728acc42acc93ee675dec49d (diff) |
automatic import of python-nanocount
Diffstat (limited to 'python-nanocount.spec')
-rw-r--r-- | python-nanocount.spec | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/python-nanocount.spec b/python-nanocount.spec new file mode 100644 index 0000000..0fcb4a0 --- /dev/null +++ b/python-nanocount.spec @@ -0,0 +1,72 @@ +%global _empty_manifest_terminate_build 0 +Name: python-NanoCount +Version: 1.0.0.post6 +Release: 1 +Summary: NanoCount estimates transcripts abundance from Oxford Nanopore *direct-RNA sequencing* datasets, using an expectation-maximization approach like RSEM, Kallisto, salmon, etc to handle the uncertainty of multi-mapping reads +License: MIT +URL: https://github.com/a-slide/NanoCount/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/b1/82/7f67f30f1224ecf5afd4f4cc2aa83cf0c9fc56a1e131dc6572e908bd9a9a/NanoCount-1.0.0.post6.tar.gz +BuildArch: noarch + + +%description +**NanoCount estimates transcripts abundance from Oxford Nanopore *direct-RNA sequencing* datasets, using an expectation-maximization approach like RSEM, Kallisto, salmon, etc to handle the uncertainty of multi-mapping reads** + +%package -n python3-NanoCount +Summary: NanoCount estimates transcripts abundance from Oxford Nanopore *direct-RNA sequencing* datasets, using an expectation-maximization approach like RSEM, Kallisto, salmon, etc to handle the uncertainty of multi-mapping reads +Provides: python-NanoCount +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-NanoCount +**NanoCount estimates transcripts abundance from Oxford Nanopore *direct-RNA sequencing* datasets, using an expectation-maximization approach like RSEM, Kallisto, salmon, etc to handle the uncertainty of multi-mapping reads** + +%package help +Summary: Development documents and examples for NanoCount +Provides: python3-NanoCount-doc +%description help +**NanoCount estimates transcripts abundance from Oxford Nanopore *direct-RNA sequencing* datasets, using an expectation-maximization approach like RSEM, Kallisto, salmon, etc to handle the uncertainty of multi-mapping reads** + +%prep +%autosetup -n NanoCount-1.0.0.post6 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-NanoCount -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.0.post6-1 +- Package Spec generated |