This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
ImageIO/utils/bfGetVersion.m
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
14 lines (11 sloc)
426 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function [ version, major, minor, revision ] = bfGetVersion() | |
%BFGETVERSION Return current version of BioFormat | |
% This function simply return the version of the current installed | |
% BioFormat version. Unfortunately BioFormat does not provide a method to | |
% check for the version, so this has to be updated manually each time the | |
% bfmatlab package is updated. | |
version = '5.2'; | |
major = 5; | |
minor = 2; | |
revision = 0; | |
end | |