FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Mutation-Simulator/mutation_simulator/defaults.py at master · mkpython3/Mutation-Simulator · GitHub
mkpython3
/
Mutation-Simulator
Public
Notifications
You must be signed in to change notification settings
Fork
6
Star
43
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Mutation-Simulator
/
mutation_simulator
/
defaults.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
42 lines (33 loc) · 666 Bytes
Breadcrumbs
Mutation-Simulator
/
mutation_simulator
/
defaults.py
Copy path
File metadata and controls
42 lines (33 loc) · 666 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from
pathlib
import
Path
from
sys
import
stderr
,
stdout
from
.
mut_types
import
MutType
class
Defaults
:
"""Holds default values."""
OUTBASE
=
Path
(
"."
)
IGNORE_WARNINGS
=
False
QUIET
=
False
if
stdout
.
isatty
()
and
stderr
.
isatty
():
NO_COLOR
=
False
NO_PROGRESS
=
False
else
:
NO_COLOR
=
True
NO_PROGRESS
=
True
SPECIES_NAME
=
"Unknown"
ASSEMBLY_NAME
=
"Unknown"
SAMPLE_NAME
=
"Unknown"
TITV
=
1
RATE
=
0
BLOCK
=
1
MINLEN
=
1
MAXLEN
=
2
IV_MINLEN
=
2
IV_MAXLEN
=
3
MUT_BLOCK
=
{
MutType
.
SN
:
BLOCK
,
MutType
.
IN
:
BLOCK
,
MutType
.
DE
:
BLOCK
,
MutType
.
IV
:
BLOCK
,
MutType
.
DU
:
BLOCK
,
MutType
.
TL
:
BLOCK
,
MutType
.
TLI
:
BLOCK
,
}
Back
|
FazBrowse Home
|
New Git URL