Calculate the ContigProperties of a path. */
| 424 | |
| 425 | /** Calculate the ContigProperties of a path. */ |
| 426 | static ContigProperties calculatePathProperties(const Graph& g, |
| 427 | const ContigPath& path) |
| 428 | { |
| 429 | return addProp(g, path.begin(), path.end()); |
| 430 | } |
| 431 | |
| 432 | /* Resolve ambiguous region using pairwise alignment |
| 433 | * (Needleman-Wunsch) ('solutions' contain exactly two paths, from a |
no test coverage detected