Skip to content

Commit d253a1a

Browse files
committed
Clusty submodule updated (fixed issue with empty graphs after filtering).
1 parent 7dcf7eb commit d253a1a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/large.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
########################################################################################
99
checkout:
1010
name: Checkout
11-
runs-on: [self-hosted, vclust, x64_linux, large]
11+
runs-on: [self-hosted, x64_linux, large]
1212

1313
steps:
1414
- name: clean
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
matrix:
3333
compiler: [14]
34-
runs-on: [self-hosted, vclust, x64_linux, large]
34+
runs-on: [self-hosted, x64_linux, large]
3535

3636
steps:
3737
# - name: clean
@@ -74,7 +74,7 @@ jobs:
7474
INPUT_DIR: ../../../../vclust/input
7575
TEMP_DIR: ../../../../vclust/temp
7676

77-
runs-on: [self-hosted, vclust, x64_linux, large]
77+
runs-on: [self-hosted, x64_linux, large]
7878

7979
steps:
8080
- name: prefilter
@@ -111,7 +111,7 @@ jobs:
111111
INPUT_DIR: ../../../../vclust/input
112112
TEMP_DIR: ../../../../vclust/temp
113113

114-
runs-on: [self-hosted, vclust, x64_linux, large]
114+
runs-on: [self-hosted, x64_linux, large]
115115

116116
steps:
117117
- name: cluster

3rd_party/clusty

Submodule clusty updated 96 files

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The Vclust documentation is available on the [GitHub Wiki](https://github.com/re
9696

9797
## Citation
9898

99-
Zielezinski A, Gudyś A, Barylski J, Siminski K, Rozwalak P, Dutilh BE, Deorowicz S. *Ultrafast and accurate sequence alignment and clustering of viral genomes*. bioRxiv [[doi:10.1101/2024.06.27.601020](https://www.biorxiv.org/content/10.1101/2024.06.27.601020)].
99+
Zielezinski A, Gudyś A, Barylski J, Siminski K, Rozwalak P, Dutilh BE, Deorowicz S. Ultrafast and accurate sequence alignment and clustering of viral genomes. Nat Methods. [https://doi.org/10.1038/s41592-025-02701-7](https://doi.org/10.1038/s41592-025-02701-7)
100100

101101
## License
102102

vclust.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
import tempfile
1717
import typing
1818

19-
__version__ = '1.3.0'
19+
__version__ = '1.3.1'
2020

21-
CITATION = '''Zielezinski A, Gudys A et al. (2024)
21+
CITATION = '''Zielezinski A, Gudys A et al. (2025)
2222
Ultrafast and accurate sequence alignment and clustering of viral genomes.
23-
bioRxiv. doi: 10.1101/2024.06.27.601020'''
23+
Nat Methods. doi: https://doi.org/10.1038/s41592-025-02701-7'''
2424

2525
DEFAULT_THREAD_COUNT = min(multiprocessing.cpu_count(), 64)
2626

0 commit comments

Comments
 (0)