Skip to content

Commit 6a437de

Browse files
committed
added readme
1 parent c2a3e91 commit 6a437de

File tree

4 files changed

+38
-51
lines changed

4 files changed

+38
-51
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ jobs:
5555
upload_pypi:
5656
needs: [build_wheels, build_sdist]
5757
runs-on: ubuntu-latest
58-
#if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
59-
if: github.event_name == 'push'
58+
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
59+
#if: github.event_name == 'push'
6060
steps:
6161
- uses: actions/download-artifact@v2
6262
with:
@@ -66,5 +66,5 @@ jobs:
6666
- uses: pypa/gh-action-pypi-publish@master
6767
with:
6868
user: __token__
69-
password: ${{ secrets.PYPI_TEST_API_TOKEN }}
70-
repository_url: https://test.pypi.org/legacy/
69+
password: ${{ secrets.PYPI_API_TOKEN }}
70+
#repository_url: https://test.pypi.org/legacy/

README.rst

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,34 @@
1-
# strit
2-
short tandem repeat identification tool
1+
stria
2+
#####
3+
4+
.. image:: https://github.com/lmdu/stria/actions/workflows/main.yml/badge.svg
5+
:target: https://github.com/lmdu/stria/actions/workflows/main.yml
6+
:alt: Github Action
7+
8+
.. image:: https://readthedocs.org/projects/stria/badge/?version=latest
9+
:target: https://stria.readthedocs.io/en/latest/?badge=latest
10+
:alt: Readthedocs
11+
12+
.. image:: https://img.shields.io/pypi/v/stria.svg
13+
:target: https://pypi.org/project/stria
14+
:alt: PyPI
15+
16+
*a fast Python package for identification and analysis of short tandem repeat sequences*
17+
18+
Introduction
19+
============
20+
21+
A Tandem repeat (TR) in genomic sequence is a set of adjacent short DNA sequence repeated consecutively.
22+
The core sequence or repeat unit is generally called motif. According to the motif length, tandem repeats
23+
can be classified as microsatellites and minisatellites. Microsatellites are also known as simple sequence
24+
repeats (SSRs) or short tandem repeats (STRs) with motif length of 1-6 bp. Minisatellites are also sometimes
25+
referred to as variable number of tandem repeats (VNTRs) has longer motif length than micorsatellites.
26+
27+
The ``stria`` is a lightweight Python C extension for identification and analysis of short tandem repeats.
28+
The ``stria`` enables to fastly identify both exact and imperfect SSRs and VNTRs from large numbers of DNA sequences.
29+
The ``stria`` also provides command line tools for users to extract tandem repeats from Fasta files.
30+
31+
Documentation
32+
=============
33+
34+
`https://stria.readthedocs.io/ <https://stria.readthedocs.io/>`_

ssr.py

Lines changed: 0 additions & 37 deletions
This file was deleted.

test.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)