msasim 2024.5.22__cp311-cp311-musllinux_1_1_x86_64.whl → 2024.5.221255__cp311-cp311-musllinux_1_1_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- msasim-2024.5.221255.dist-info/METADATA +54 -0
- msasim-2024.5.221255.dist-info/RECORD +10 -0
- {msasim-2024.5.22.dist-info → msasim-2024.5.221255.dist-info}/top_level.txt +1 -1
- msasim-2024.5.22.dist-info/METADATA +0 -13
- msasim-2024.5.22.dist-info/RECORD +0 -10
- {Sailfish → msasim}/__init__.py +0 -0
- /Sailfish/simulator.py → /msasim/sailfish.py +0 -0
- {msasim-2024.5.22.dist-info → msasim-2024.5.221255.dist-info}/LICENSE +0 -0
- {msasim-2024.5.22.dist-info → msasim-2024.5.221255.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: msasim
|
|
3
|
+
Version: 2024.5.221255
|
|
4
|
+
Summary: A fast MSA simulator
|
|
5
|
+
Home-page: https://github.com/elyawy/Sailfish-backend
|
|
6
|
+
Author: Elya Wygoda
|
|
7
|
+
Author-email: elya.wygoda@gmail.com
|
|
8
|
+
Requires-Python: >=3.6
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Provides-Extra: test
|
|
12
|
+
Requires-Dist: pytest ; extra == 'test'
|
|
13
|
+
|
|
14
|
+
# Sailfish
|
|
15
|
+
|
|
16
|
+
Sailfish is a performant multiple sequence alignment(MSA) simulator, written in C++ and Python, allowing for quick and easy generation of large simulated datasets.
|
|
17
|
+
|
|
18
|
+
## Project goals
|
|
19
|
+
|
|
20
|
+
- Ease of use
|
|
21
|
+
- Speed
|
|
22
|
+
- Modularity
|
|
23
|
+
|
|
24
|
+
## Installation
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install msasim
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Example
|
|
31
|
+
|
|
32
|
+
```python
|
|
33
|
+
from msasim import sailfish as sim
|
|
34
|
+
from msasim.sailfish import MODEL_CODES, ZipfDistribution
|
|
35
|
+
|
|
36
|
+
ROOT_SEQUENCE_LENGTH = 100
|
|
37
|
+
|
|
38
|
+
sim_protocol = sim.SimProtocol("(A:0.5,B:0.5);",
|
|
39
|
+
deletion_rate=0.01,
|
|
40
|
+
insertion_rate=0.01,
|
|
41
|
+
deletion_dist=ZipfDistribution(1.08, 50),
|
|
42
|
+
insertion_dist=ZipfDistribution(1.08, 50),
|
|
43
|
+
seed=50)
|
|
44
|
+
sim_protocol.set_sequence_size(ROOT_SEQUENCE_LENGTH)
|
|
45
|
+
|
|
46
|
+
simulation = sim.Simulator(sim_protocol, simulation_type=sim.SIMULATION_TYPE.PROTEIN)
|
|
47
|
+
|
|
48
|
+
simulation.set_replacement_model(model=MODEL_CODES.WAG,
|
|
49
|
+
gamma_parameters_alpha=1.0,
|
|
50
|
+
gamma_parameters_catergories=4)
|
|
51
|
+
msa = simulation()
|
|
52
|
+
msa.print_msa()
|
|
53
|
+
|
|
54
|
+
```
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
_Sailfish.cpython-311-x86_64-linux-musl.so,sha256=fRgYa_XeOliZqgWXo9BxvOXoP5S_P6ySiA0ZycSLluo,1170537
|
|
2
|
+
msasim.libs/libstdc++-a9383cce.so.6.0.28,sha256=Wy9UCdwS1rwI9GU5e7qE61S0AkRqqwti1q_adWSs-Rk,2447393
|
|
3
|
+
msasim.libs/libgcc_s-a04fdf82.so.1,sha256=YxqJNaesQMhDswHEQpXsiLnVvMBBbYO6KYMDZFPWKSM,81257
|
|
4
|
+
msasim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
msasim/sailfish.py,sha256=CTFAnavIHy918aF141FKeZjO5Y-oYASI-TR5MMGGVks,24324
|
|
6
|
+
msasim-2024.5.221255.dist-info/WHEEL,sha256=jqvqvLYfT7NEQOGIyLr4p_xCRAE1DTGEHPS4uypWmWI,113
|
|
7
|
+
msasim-2024.5.221255.dist-info/LICENSE,sha256=p1Aa_mM2Nu6dG3XqMVU62Jhf04lNOwtXUrhhvhcDips,10312
|
|
8
|
+
msasim-2024.5.221255.dist-info/top_level.txt,sha256=NS1ILx5V94Yyh_M7yDrrqbBPu1TL_zJuxhsI90YEJVY,17
|
|
9
|
+
msasim-2024.5.221255.dist-info/RECORD,,
|
|
10
|
+
msasim-2024.5.221255.dist-info/METADATA,sha256=ZyDwMVWYnvwNA-pVTrES4d32T6mtB4e7JXWrZ60-N3k,1474
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: msasim
|
|
3
|
-
Version: 2024.5.22
|
|
4
|
-
Summary: A fast MSA simulator
|
|
5
|
-
Home-page: https://github.com/elyawy/Sailfish-backend
|
|
6
|
-
Author: Elya Wygoda
|
|
7
|
-
Author-email: elya.wygoda@gmail.com
|
|
8
|
-
Requires-Python: >=3.6
|
|
9
|
-
License-File: LICENSE
|
|
10
|
-
Provides-Extra: test
|
|
11
|
-
Requires-Dist: pytest ; extra == 'test'
|
|
12
|
-
|
|
13
|
-
Sailfish is a performant multiple sequence alignment simulator, written in C++, allowing fast generation of large simualted datasets.
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
_Sailfish.cpython-311-x86_64-linux-musl.so,sha256=fRgYa_XeOliZqgWXo9BxvOXoP5S_P6ySiA0ZycSLluo,1170537
|
|
2
|
-
Sailfish/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
Sailfish/simulator.py,sha256=CTFAnavIHy918aF141FKeZjO5Y-oYASI-TR5MMGGVks,24324
|
|
4
|
-
msasim.libs/libstdc++-a9383cce.so.6.0.28,sha256=Wy9UCdwS1rwI9GU5e7qE61S0AkRqqwti1q_adWSs-Rk,2447393
|
|
5
|
-
msasim.libs/libgcc_s-a04fdf82.so.1,sha256=YxqJNaesQMhDswHEQpXsiLnVvMBBbYO6KYMDZFPWKSM,81257
|
|
6
|
-
msasim-2024.5.22.dist-info/WHEEL,sha256=jqvqvLYfT7NEQOGIyLr4p_xCRAE1DTGEHPS4uypWmWI,113
|
|
7
|
-
msasim-2024.5.22.dist-info/LICENSE,sha256=p1Aa_mM2Nu6dG3XqMVU62Jhf04lNOwtXUrhhvhcDips,10312
|
|
8
|
-
msasim-2024.5.22.dist-info/top_level.txt,sha256=mVJT9Q6vqdBJyJ6acJvUdopsnVCQH7wEMQ-3iT6C-Jg,19
|
|
9
|
-
msasim-2024.5.22.dist-info/RECORD,,
|
|
10
|
-
msasim-2024.5.22.dist-info/METADATA,sha256=xZjkEbQzNYYvB1WB75UQGh14FnS4rM7CUgujkplkRkA,435
|
{Sailfish → msasim}/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|