Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Terminal fragment selector
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
zavolan_group
tools
Terminal fragment selector
Commits
4acce8f9
Commit
4acce8f9
authored
1 year ago
by
Mate Balajti
Browse files
Options
Downloads
Patches
Plain Diff
feat: update setup.py to allow tool install
parent
c6b96e6b
No related branches found
Branches containing commit
No related tags found
1 merge request
!58
refactor: update CLI
Pipeline
#17235
failed
1 year ago
Stage: build
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+1
-2
1 addition, 2 deletions
README.md
setup.py
+6
-1
6 additions, 1 deletion
setup.py
term_frag_sel/cli.py
+8
-6
8 additions, 6 deletions
term_frag_sel/cli.py
term_frag_sel/fragmentation.py
+1
-1
1 addition, 1 deletion
term_frag_sel/fragmentation.py
with
16 additions
and
10 deletions
README.md
+
1
−
2
View file @
4acce8f9
...
@@ -29,8 +29,7 @@ Output:
...
@@ -29,8 +29,7 @@ Output:
To install package, run
To install package, run
```
```
pip install -r requirements.txt
pip install .
pip install -r requirements_dev.txt
```
```
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
6
−
1
View file @
4acce8f9
...
@@ -18,5 +18,10 @@ setup(
...
@@ -18,5 +18,10 @@ setup(
author_email
=
'
hmadge@ethz.ch
'
,
author_email
=
'
hmadge@ethz.ch
'
,
description
=
'
Terminal fragment selector
'
,
description
=
'
Terminal fragment selector
'
,
packages
=
find_packages
(),
packages
=
find_packages
(),
install_requires
=
INSTALL_REQUIRES
install_requires
=
INSTALL_REQUIRES
,
entry_points
=
{
'
console_scripts
'
:
[
'
terminal-fragment-selector=term_frag_sel.cli:main
'
]
}
)
)
This diff is collapsed.
Click to expand it.
term_frag_sel/cli.py
+
8
−
6
View file @
4acce8f9
...
@@ -18,13 +18,15 @@ logging.basicConfig(
...
@@ -18,13 +18,15 @@ logging.basicConfig(
logger
=
logging
.
getLogger
(
"
main
"
)
logger
=
logging
.
getLogger
(
"
main
"
)
def
main
(
args
:
argparse
.
Namespace
):
def
main
():
"""
Use CLI arguments to fragment sequences and output text file
\
"""
Use CLI arguments to fragment sequences and output text file
\
with selected terminal fragments.
with selected terminal fragments.
Args:
Args:
args (parser): list of arguments from CLI.
args (parser): list of arguments from CLI.
"""
"""
args
=
parse_arguments
()
if
not
isinstance
(
args
,
argparse
.
Namespace
):
if
not
isinstance
(
args
,
argparse
.
Namespace
):
raise
TypeError
(
"
Input should be argparse.Namespace
"
)
raise
TypeError
(
"
Input should be argparse.Namespace
"
)
...
@@ -38,8 +40,10 @@ def main(args: argparse.Namespace):
...
@@ -38,8 +40,10 @@ def main(args: argparse.Namespace):
logger
.
info
(
"
Fragmentation of %s...
"
,
args
.
fasta
)
logger
.
info
(
"
Fragmentation of %s...
"
,
args
.
fasta
)
splits
=
np
.
arange
(
0
,
len
(
list
(
fasta
))
+
args
.
size
,
args
.
size
)
splits
=
np
.
arange
(
0
,
len
(
list
(
fasta
))
+
args
.
size
,
args
.
size
)
for
i
,
split
in
enumerate
(
splits
):
for
i
in
range
(
len
(
splits
)
-
1
):
fasta_dict
=
fasta
[
split
:
splits
[
i
+
1
]]
split
=
splits
[
i
]
keys
=
list
(
fasta
.
keys
())[
split
:
splits
[
i
+
1
]]
fasta_dict
=
{
key
:
fasta
[
key
]
for
key
in
keys
}
term_frags
=
fragmentation
(
fasta_dict
,
seq_counts
,
term_frags
=
fragmentation
(
fasta_dict
,
seq_counts
,
args
.
mean
,
args
.
std
)
args
.
mean
,
args
.
std
)
...
@@ -132,6 +136,4 @@ if __name__ == '__main__':
...
@@ -132,6 +136,4 @@ if __name__ == '__main__':
level
=
logging
.
INFO
,
level
=
logging
.
INFO
,
)
)
logger
=
logging
.
getLogger
(
__name__
)
logger
=
logging
.
getLogger
(
__name__
)
main
()
arguments
=
parse_arguments
()
main
(
arguments
)
This diff is collapsed.
Click to expand it.
term_frag_sel/fragmentation.py
+
1
−
1
View file @
4acce8f9
...
@@ -24,7 +24,7 @@ def fragmentation(fasta: dict, seq_counts: pd.DataFrame,
...
@@ -24,7 +24,7 @@ def fragmentation(fasta: dict, seq_counts: pd.DataFrame,
term_frags
=
[]
term_frags
=
[]
for
seq_id
,
seq
in
fasta
.
items
():
for
seq_id
,
seq
in
fasta
.
items
():
counts
=
seq_counts
[
seq_counts
[
"
seqID
"
]
==
seq_id
][
"
count
"
]
counts
=
seq_counts
[
seq_counts
[
"
seqID
"
]
==
str
(
seq_id
)
][
"
count
"
]
for
_
in
range
(
counts
.
iloc
[
0
]):
for
_
in
range
(
counts
.
iloc
[
0
]):
cuts
=
[]
cuts
=
[]
seq_len
=
len
(
seq
)
seq_len
=
len
(
seq
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment