summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-scicast.spec102
-rw-r--r--sources1
3 files changed, 104 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..7c31b63 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/scicast-0.8.27.tar.gz
diff --git a/python-scicast.spec b/python-scicast.spec
new file mode 100644
index 0000000..7c65dbe
--- /dev/null
+++ b/python-scicast.spec
@@ -0,0 +1,102 @@
+%global _empty_manifest_terminate_build 0
+Name: python-scicast
+Version: 0.8.27
+Release: 1
+Summary: scicast: Single Cell Iterative Clustering and Statistical Testing. A package for interrogating single cell sequencing data.
+License: MIT
+URL: https://github.com/iandriver/scicast
+Source0: https://mirrors.aliyun.com/pypi/web/packages/7d/f0/699e11febf213b2543ad32239c629c83cdf412bd98851966afe67b46ec0e/scicast-0.8.27.tar.gz
+BuildArch: noarch
+
+
+%description
+scicast is a python utility that automates many of the repetitive steps of analyzing single cell sequencing data.
+
+-k-means clustering to identify clusters
+
+-Clustering and subclustering of data to identify 'stable' sets of cells.
+
+-Statistical testing to identify top genes that indentify stable cluster.
+
+-Correlation search and analysis to identify gene networks driving cluster identity.
+
+-Outputs both plots for visualization (PCA and heatmap) cell and gene lists that can be used to refine analysis.
+
+%package -n python3-scicast
+Summary: scicast: Single Cell Iterative Clustering and Statistical Testing. A package for interrogating single cell sequencing data.
+Provides: python-scicast
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-scicast
+scicast is a python utility that automates many of the repetitive steps of analyzing single cell sequencing data.
+
+-k-means clustering to identify clusters
+
+-Clustering and subclustering of data to identify 'stable' sets of cells.
+
+-Statistical testing to identify top genes that indentify stable cluster.
+
+-Correlation search and analysis to identify gene networks driving cluster identity.
+
+-Outputs both plots for visualization (PCA and heatmap) cell and gene lists that can be used to refine analysis.
+
+%package help
+Summary: Development documents and examples for scicast
+Provides: python3-scicast-doc
+%description help
+scicast is a python utility that automates many of the repetitive steps of analyzing single cell sequencing data.
+
+-k-means clustering to identify clusters
+
+-Clustering and subclustering of data to identify 'stable' sets of cells.
+
+-Statistical testing to identify top genes that indentify stable cluster.
+
+-Correlation search and analysis to identify gene networks driving cluster identity.
+
+-Outputs both plots for visualization (PCA and heatmap) cell and gene lists that can be used to refine analysis.
+
+%prep
+%autosetup -n scicast-0.8.27
+
+%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-scicast -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 0.8.27-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..f3b1086
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+f82889b98ac83c43d93be917a1ae8a50 scicast-0.8.27.tar.gz