Skip to content

Commit

Permalink
Merge pull request #117 from briney/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
briney committed May 3, 2023
2 parents 7335f22 + 438812c commit 00b3ad8
Show file tree
Hide file tree
Showing 151 changed files with 17,289 additions and 4,645 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -56,5 +56,7 @@ docs/_build/
# PyBuilder
target/

.vscode

*.sublime-*
.DS_Store
1 change: 1 addition & 0 deletions MANIFEST.in
Expand Up @@ -32,6 +32,7 @@ include abstar/assigners/germline_dbs/tcr/human/*
include abstar/assigners/germline_dbs/tcr/human/blast/*
include abstar/assigners/germline_dbs/tcr/human/ungapped/*
include abstar/assigners/germline_dbs/tcr/human/imgt_gapped/*
include abstar/preprocess/*
include abstar/test_data/*
include abstar/utils/*
include abstar/utils/queue/*
Expand Down
5 changes: 3 additions & 2 deletions abstar/__init__.py
@@ -1,8 +1,9 @@
import warnings
from Bio import BiopythonWarning
warnings.simplefilter('ignore', BiopythonWarning)

from .core.abstar import run, run_standalone, main, parse_arguments, validate_args
warnings.simplefilter("ignore", BiopythonWarning)

from .core.abstar import run, run_standalone, main, create_parser, validate_args
from .preprocess import fastqc, adapter_trim, quality_trim

from .version import __version__
Empty file added abstar/_preprocess/__init__.py
Empty file.
23 changes: 23 additions & 0 deletions abstar/_preprocess/qc.py
@@ -0,0 +1,23 @@
#!/usr/bin/python
# filename: qc.py

#
# Copyright (c) 2023 Bryan Briney
# License: The MIT license (http://opensource.org/licenses/MIT)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software
# and associated documentation files (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge, publish, distribute,
# sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or
# substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
# BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#

23 changes: 23 additions & 0 deletions abstar/_preprocess/trimming.py
@@ -0,0 +1,23 @@
#!/usr/bin/python
# filename: trimming.py

#
# Copyright (c) 2023 Bryan Briney
# License: The MIT license (http://opensource.org/licenses/MIT)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software
# and associated documentation files (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge, publish, distribute,
# sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or
# substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
# BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#

0 comments on commit 00b3ad8

Please sign in to comment.