Skip to content

Commit

Permalink
verison bump, adding ci test for get_scheme, improving log
Browse files Browse the repository at this point in the history
  • Loading branch information
will-rowe committed Aug 22, 2020
1 parent a074397 commit 33b4807
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,6 @@ script:
- ../bin/artic-tools_tests
- ../bin/artic-tools -v
- ../bin/artic-tools align_trim -h
- ../bin/artic-tools get_scheme nipah
- ../bin/artic-tools validate_scheme -h
- ../bin/artic-tools check_vcf -h
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ project(ARTIC)
set(ARTIC_PROG_NAME artic-tools)
set(ARTIC_VERSION_MAJOR 0)
set(ARTIC_VERSION_MINOR 2)
set(ARTIC_VERSION_PATCH 1)
set(ARTIC_VERSION_PATCH 2)
configure_file (
"${PROJECT_SOURCE_DIR}/artic/version.hpp.in"
"${PROJECT_SOURCE_DIR}/artic/version.hpp"
Expand Down
2 changes: 2 additions & 0 deletions artic/primerSchemeDownloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ void artic::DownloadScheme(const std::string& schemeName, unsigned int requested
LOG_TRACE("\tversion: {}", requestedVersion);
if ((requestedVersion != version) && (requestedVersion != 0))
LOG_WARN("requested scheme version not found, using latest version instead (v{})", version);
if (requestedVersion == 0)
LOG_WARN("requested latest scheme version, using v{}", version);

// create filenames
std::stringstream of1;
Expand Down

0 comments on commit 33b4807

Please # to comment.