Skip to content

Commit

Permalink
fix mmseqs colnames format
Browse files Browse the repository at this point in the history
  • Loading branch information
gbouras13 committed Nov 20, 2024
1 parent 7f376a5 commit c16c61d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install project
shell: bash -l {0}
run: |
mamba install python=${{ matrix.python-version }}
conda install python=${{ matrix.python-version }}
python -m pip install --upgrade pip
pip install -e .
pip install black
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ Options:
-t, --threads INTEGER Number of threads to use with BLAST [default: 1]
-p, --prefix TEXT Prefix for output files [default: dnaapler]
-f, --force Force overwrites the output directory
-e, --evalue TEXT e value for MMseqs [default: 1e-10]
-e, --evalue TEXT e value for MMseqs2 [default: 1e-10]
--ignore PATH Text file listing contigs (one per row) that are to
be ignored
-a, --autocomplete TEXT Choose an option to autocomplete reorientation if
Expand Down
2 changes: 1 addition & 1 deletion src/dnaapler/utils/cds_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def run_MMseqs2_based_method(
MMseqs2_output_tmpdir = Path(f"{output}/tmp_MMseqs2_output")
MMseqs2_output_file = Path(f"{output}/{prefix}_MMseqs2_output.txt")
# matches the blast ones to make subbing MMseqs2 for BLAST as easy as possible
MMseqs2_columns = "query,qlen,target,tlen,alnlen,qstart,qstart,qend,tstart,tend,fident,nident,gapopen,mismatch,evalue,bits,qaln,taln"
MMseqs2_columns = "query,qlen,target,tlen,alnlen,qstart,qend,tstart,tend,fident,nident,gapopen,mismatch,evalue,bits,qaln,taln"


db = os.path.join(DNAAPLER_DB, db_name)
Expand Down

0 comments on commit c16c61d

Please sign in to comment.