Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,11 @@ jobs:
run: >
$INSTALL_DIR/$PKG_LINUX/bin/spades.py --test --grid-engine=mpi

- name: 'slurm configs only'
run: >
$INSTALL_DIR/$PKG_LINUX/bin/spades.py --test --grid-engine=slurm --only-generate-config --grid-extra=\"--gres=gpu:0\"


build-mac:
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion src/common/alignment/kmer_mapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class KmerMapper : public omnigraph::GraphActionHandler<Graph> {
}

Kmer Substitute(const Kmer &kmer) const {
VERIFY(this->IsAttached());
// VERIFY(this->IsAttached());
const auto *rawval = mapping_.find(kmer);
if (rawval == nullptr)
return kmer;
Expand Down
2 changes: 1 addition & 1 deletion src/common/pipeline/graph_pack_helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void EnsureIndex(GraphPack& gp) {
void EnsureBasicMapping(GraphPack& gp) {
auto &kmer_mapper = gp.get_mutable<KmerMapper<Graph>>();

VERIFY(kmer_mapper.IsAttached());
// VERIFY(kmer_mapper.IsAttached());
EnsureIndex(gp);
INFO("Normalizing k-mer map. Total " << kmer_mapper.size() << " kmers to process");
kmer_mapper.Normalize();
Expand Down
2 changes: 1 addition & 1 deletion src/projects/spades/pipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ void assemble_genome() {
cfg::get().flanking_range,
cfg::get().pos.max_mapping_gap,
cfg::get().pos.max_gap_diff);
if (cfg::get().need_mapping) {
if (0 && cfg::get().need_mapping) {
INFO("Will need read mapping, kmer mapper will be attached");
conj_gp.get_mutable<debruijn_graph::KmerMapper<debruijn_graph::Graph>>().Attach();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
############################################################################
import sys

import executor_base
from . import executor_base
from ..options_storage import OptionStorage
from .. import support

Expand Down
Loading