PyamilySeq 0.5.0__py3-none-any.whl → 0.5.1__py3-none-any.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.
- PyamilySeq/Constants.py +1 -1
- PyamilySeq/PyamilySeq.py +3 -3
- {PyamilySeq-0.5.0.dist-info → PyamilySeq-0.5.1.dist-info}/METADATA +7 -7
- {PyamilySeq-0.5.0.dist-info → PyamilySeq-0.5.1.dist-info}/RECORD +8 -8
- {PyamilySeq-0.5.0.dist-info → PyamilySeq-0.5.1.dist-info}/LICENSE +0 -0
- {PyamilySeq-0.5.0.dist-info → PyamilySeq-0.5.1.dist-info}/WHEEL +0 -0
- {PyamilySeq-0.5.0.dist-info → PyamilySeq-0.5.1.dist-info}/entry_points.txt +0 -0
- {PyamilySeq-0.5.0.dist-info → PyamilySeq-0.5.1.dist-info}/top_level.txt +0 -0
PyamilySeq/Constants.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
PyamilySeq_Version = 'v0.5.
|
|
1
|
+
PyamilySeq_Version = 'v0.5.1'
|
|
2
2
|
|
PyamilySeq/PyamilySeq.py
CHANGED
|
@@ -3,7 +3,7 @@ import collections
|
|
|
3
3
|
import os
|
|
4
4
|
import glob
|
|
5
5
|
import subprocess
|
|
6
|
-
|
|
6
|
+
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
try:
|
|
@@ -43,8 +43,8 @@ def main():
|
|
|
43
43
|
required.add_argument('-run_mode', action='store', dest='run_mode', choices=['Full','Partial'],
|
|
44
44
|
help='Run Mode: Should PyamilySeq be run in "Full" or "Partial" mode?',
|
|
45
45
|
required=True)
|
|
46
|
-
required.add_argument('-group_mode', action='store', dest='group_type', choices=['Species'
|
|
47
|
-
help='Group Mode: Should PyamilySeq be run in "Species" or "Genus" mode?',
|
|
46
|
+
required.add_argument('-group_mode', action='store', dest='group_type', choices=['Species'],
|
|
47
|
+
help='Group Mode: Should PyamilySeq be run in "Species" or "Genus" mode? - Genus mode not currently functioning',
|
|
48
48
|
required=True)
|
|
49
49
|
required.add_argument("-clust_tool", action="store", dest="clust_tool", choices=['CD-HIT'],
|
|
50
50
|
help="Clustering tool to use: CD-HIT, DIAMOND, BLAST or MMseqs2.",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PyamilySeq
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.1
|
|
4
4
|
Summary: PyamilySeq - A a tool to look for sequence-based gene families identified by clustering methods such as CD-HIT, DIAMOND, BLAST or MMseqs2.
|
|
5
5
|
Home-page: https://github.com/NickJD/PyamilySeq
|
|
6
6
|
Author: Nicholas Dimonaco
|
|
@@ -47,7 +47,7 @@ usage: PyamilySeq.py [-h] -run_mode {Full,Partial} -group_mode {Species,Genus}
|
|
|
47
47
|
[-gpa GENE_PRESENCE_ABSENCE_OUT] [-verbose {True,False}]
|
|
48
48
|
[-v]
|
|
49
49
|
|
|
50
|
-
PyamilySeq v0.5.
|
|
50
|
+
PyamilySeq v0.5.1: PyamilySeq Run Parameters.
|
|
51
51
|
|
|
52
52
|
options:
|
|
53
53
|
-h, --help show this help message and exit
|
|
@@ -56,9 +56,9 @@ Required Arguments:
|
|
|
56
56
|
-run_mode {Full,Partial}
|
|
57
57
|
Run Mode: Should PyamilySeq be run in "Full" or
|
|
58
58
|
"Partial" mode?
|
|
59
|
-
-group_mode {Species
|
|
59
|
+
-group_mode {Species}
|
|
60
60
|
Group Mode: Should PyamilySeq be run in "Species" or
|
|
61
|
-
"Genus" mode?
|
|
61
|
+
"Genus" mode? - Genus mode not currently functioning
|
|
62
62
|
-clust_tool {CD-HIT} Clustering tool to use: CD-HIT, DIAMOND, BLAST or
|
|
63
63
|
MMseqs2.
|
|
64
64
|
-output_dir OUTPUT_DIR
|
|
@@ -119,14 +119,14 @@ Misc:
|
|
|
119
119
|
### Examples: Below are two examples of running PyamilySeq in its two main modes.
|
|
120
120
|
#### 'Full Mode': Will conduct clustering of sequences as part of PyamilySeq run
|
|
121
121
|
```bash
|
|
122
|
-
PyamilySeq -
|
|
122
|
+
PyamilySeq -run_mode Full -group_mode Species -output_dir ../../test_data/testing -input_type combined -input_dir .../test_data/genomes -name_split _combined.gff3 -pid 0.99 -len_diff 0.99 -clust_tool CD-HIT -gpa True -con True -w 99 -verbose True
|
|
123
123
|
```
|
|
124
124
|
#### 'Partial Mode': Will take the output of a sequence clustering
|
|
125
125
|
```bash
|
|
126
126
|
PyamilySeq -run_mode Partial -group_mode Species -output_dir .../test_data/testing -cluster_file .../test_data/CD-HIT/combined_Ensmbl_pep_CD_90_60.clstr -clust_tool CD-HIT -original_fasta .../test_data/combined_Ensmbl_cds.fasta -gpa True -con True -w 99 -verbose True
|
|
127
127
|
```
|
|
128
128
|
|
|
129
|
-
```
|
|
129
|
+
```bash
|
|
130
130
|
Calculating Groups
|
|
131
131
|
Gene Groups:
|
|
132
132
|
first_core_99: 3103
|
|
@@ -145,7 +145,7 @@ Seq-Combiner -input_dir .../test_data/genomes -name_split _combined.gff3 -output
|
|
|
145
145
|
```bash
|
|
146
146
|
usage: Seq_Combiner.py [-h] -input_dir INPUT_DIR -input_type {separate,combined} -name_split NAME_SPLIT -output_dir OUTPUT_DIR -output_name OUTPUT_FILE
|
|
147
147
|
|
|
148
|
-
Seq-Combiner v0.5.
|
|
148
|
+
Seq-Combiner v0.5.1: Seq-Combiner Run Parameters.
|
|
149
149
|
|
|
150
150
|
options:
|
|
151
151
|
-h, --help show this help message and exit
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
PyamilySeq/CD-Hit_StORF-Reporter_Cross-Genera_Builder.py,sha256=UzQ5iOKCNfurxmj1pnkowF11YfWBO5vnBCKxQK6goB8,26538
|
|
2
|
-
PyamilySeq/Constants.py,sha256=
|
|
3
|
-
PyamilySeq/PyamilySeq.py,sha256=
|
|
2
|
+
PyamilySeq/Constants.py,sha256=mmMeeD5svOnN-Kn7LUd16DY8rWTcU2WajldKlNkuuWY,31
|
|
3
|
+
PyamilySeq/PyamilySeq.py,sha256=7pyBujHmdYR6DVNlKQ2BqX9-AylTpNexrcWN-rtyauk,11275
|
|
4
4
|
PyamilySeq/PyamilySeq_Genus.py,sha256=JpLLu3QaahUHBe7E80xVHtFORGuyeUMOt9eiLN5uazc,31286
|
|
5
5
|
PyamilySeq/PyamilySeq_Species.py,sha256=6LHEdp6Vndoder8dlVSuyUKHdCbo5Rbxea1rnncrceY,35172
|
|
6
6
|
PyamilySeq/Seq_Combiner.py,sha256=bHEIR-MZODSGm8n69ZIN-XzEoct5WZ1kH5Xa6uKCu4Y,1972
|
|
7
7
|
PyamilySeq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
PyamilySeq/utils.py,sha256=KhEnwzgVZyUu_Q92ukRPUrVD2505xSg9NY6e75nUmPQ,6487
|
|
9
|
-
PyamilySeq-0.5.
|
|
10
|
-
PyamilySeq-0.5.
|
|
11
|
-
PyamilySeq-0.5.
|
|
12
|
-
PyamilySeq-0.5.
|
|
13
|
-
PyamilySeq-0.5.
|
|
14
|
-
PyamilySeq-0.5.
|
|
9
|
+
PyamilySeq-0.5.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
10
|
+
PyamilySeq-0.5.1.dist-info/METADATA,sha256=FJRNy2WTazUXemY4jHYPmpJEdq5JQMebhfeicagLTCA,7792
|
|
11
|
+
PyamilySeq-0.5.1.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
|
12
|
+
PyamilySeq-0.5.1.dist-info/entry_points.txt,sha256=QtXD1tmnLvRAkIpGWZgXm1lfLH8GGeCwxmgoHZaTp98,102
|
|
13
|
+
PyamilySeq-0.5.1.dist-info/top_level.txt,sha256=J6JhugUQTq4rq96yibAlQu3o4KCM9WuYfqr3w1r119M,11
|
|
14
|
+
PyamilySeq-0.5.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|