Skip to content

Commit

Permalink
Merge branch 'feature/fix_reading_0.0.37_files' into 'master'
Browse files Browse the repository at this point in the history
Fix reading files written as 0.0.37

See merge request minknow/pod5-file-format!122
  • Loading branch information
0x55555555 committed Oct 31, 2022
2 parents 3e09909 + 7314b98 commit 807f85a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c++/pod5_format/migration/migration.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ inline arrow::Result<MigrationResult> migrate_if_required(
ARROW_ASSIGN_OR_RAISE(result, migrate_v1_to_v2(std::move(result), pool));
}

if (writer_version < Version(0, 0, 35)) {
if (writer_version < Version(0, 0, 38)) {
// Flattening fields
ARROW_ASSIGN_OR_RAISE(result, migrate_v2_to_v3(std::move(result), pool));
}
return result;
}

} // namespace pod5
} // namespace pod5
Binary file modified test_data/multi_fast5_zip_v3.pod5
Binary file not shown.

0 comments on commit 807f85a

Please sign in to comment.