From c0fc27c586fb5b7aee41dbde4edddcfe17734176 Mon Sep 17 00:00:00 2001 From: "Hock, Martin" <martin.hock@fst.tu-darmstadt.de> Date: Tue, 24 Aug 2021 07:14:39 +0200 Subject: [PATCH] Add Link-replacement feature --- .gitignore | 6 +++ CI_files/default_test.m | 66 ++++++++++++++++++++++++++ copiedFile.h5 | Bin 896 -> 0 bytes example.m | 58 ++++++++++++++++++----- example_fcn.m | 6 +++ fcn_core/CreateID.m | 7 ++- fcn_core/Publish.m | 87 +++++++++++++++++------------------ fcn_core/TagPlot.m | 42 +++++++++++++++-- fcn_help/FileCompare.m | 29 ------------ fcn_help/createFileCopy.m | 52 +++++++++++++++++++++ fcn_help/createLinkedHDF5.m | 22 ++++----- fcn_help/fileCompare.m | 49 ++++++++++++++++++++ fcn_help/removePltIdFiles.m | 19 ++++++++ fcn_help/replaceLinkedHDF5.m | 61 ++++++++++++++++++++++++ test_data.mat | Bin 1526 -> 0 bytes testdata_2.h5 | Bin 3064 -> 0 bytes 16 files changed, 403 insertions(+), 101 deletions(-) create mode 100644 CI_files/default_test.m delete mode 100644 copiedFile.h5 create mode 100644 example_fcn.m delete mode 100644 fcn_help/FileCompare.m create mode 100644 fcn_help/createFileCopy.m create mode 100644 fcn_help/fileCompare.m create mode 100644 fcn_help/removePltIdFiles.m create mode 100644 fcn_help/replaceLinkedHDF5.m delete mode 100644 test_data.mat delete mode 100644 testdata_2.h5 diff --git a/.gitignore b/.gitignore index b0afd48..3d5fc69 100644 --- a/.gitignore +++ b/.gitignore @@ -26,7 +26,13 @@ codegen/ # Personal test files test*.m +test123_data.h5 + +# files that are created in example.m +testdata_2.h5 +test_data.mat export/* # Octave session info octave-workspace +test_data.mat diff --git a/CI_files/default_test.m b/CI_files/default_test.m new file mode 100644 index 0000000..515ad37 --- /dev/null +++ b/CI_files/default_test.m @@ -0,0 +1,66 @@ +function [result] = default_test() +%UNTITLED2 This is a simple test if Plot ID works for the default settings +% Detailed explanation goes here + +clear; clc; close all; +addpath('./fcn_core','./fcn_help'); + +ProjectID = 'Test01'; +%% Data +% some random data +x = linspace(0,7); +y = rand(1,100)+2; +dataset1 = 'test_data.mat'; +save('CI_files/test_data.mat','x','y'); +% some data as .h5 +x1 = linspace(0,2*pi); +y1 = sin(x1)+2; + +% define file path & name +fpath = "CI_files/testdata_2.h5"; +dataset2 = 'testdata_2.h5'; + +% create hdf5 file and dataset > write data to hdf5 file / dataset +h5create(fpath, "/x1", size(x1), "Datatype", class(x1)) +h5create(fpath, "/y1", size(y1), "Datatype", class(y1)) +h5write(fpath, "/x1", x1) +h5write(fpath, "/y1", y1) + +%% Plotting + +fig(1) =figure('visible','off'); +plot(x,y,'-k'); +hold on +plot(x1,y1,'-r'); + +%% Tag the plot +try + [figs, ID] = TagPlot(fig, ProjectID); + + %% call a dummy function + a=1; + a = example_fcn(a); + + %% publishing + + % The functions needs the file location, the location of the data and the + % figure + path.script = mfilename('fullpath'); % filename of the m.script + + % file name of the data + path.rdata = {dataset1,dataset2} ; % don't forget the extension + + Publish(path, ID, figs, 'Location', 'CI-Test') + + % clean up + delete CI_files/export/* CI_files/*.mat CI_files/*.h5 + rmdir('CI_files/export','s'); + result = true; + clc; +catch + result = false; + warning('simple_test failed'); +end + +end + diff --git a/copiedFile.h5 b/copiedFile.h5 deleted file mode 100644 index 4ddca81c276e204d2476b044f5a2fda057105080..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 896 zcmeD5aB<`1lHy_j0S*oZ76t(j3y%LoK?5^H2+I8r;W02Iz!*4aMg|rJMg|5338=gP z)O-b~c`*GUL9VVKB{1`0G)Qa|kA{GUt78Bt6e2(b0|NsGls>@(Wk4xVS_3h`ia`tt zF%vxH!cruRh8WDnzyVI*5FP^q8-oUz$;jcrmy?;79g^=_QIcAemzX2Sz)+G}T#}Ml Pk{EBKmto4F4^jvKGyFnS diff --git a/example.m b/example.m index e25950d..f208097 100644 --- a/example.m +++ b/example.m @@ -1,14 +1,28 @@ -% test skript +%% Example Script +% This Script is meant to demonstrate the capabilities of the PlotID tool. + +%% Clear Environment clear; clc; close all; addpath('fcn_core','fcn_help'); +addpath('CI_files'); % Test scripts try delete testdata_2.h5; end + +%% Set ProjectID +% ProjectID + +% TODO: decide how projectID and optionally ORCID will be implemented +% ORCID placed on startup (alternative?) - projectID as persistent +% otherwise dialogue? ProjectID = 'JL01'; + + + %% Data -% some random data +% Creating Random Data to use as data-file x = linspace(0,7); y = rand(1,100)+2; @@ -30,30 +44,52 @@ h5create(fpath, "/y1", size(y1), "Datatype", class(y1)) h5write(fpath, "/x1", x1) h5write(fpath, "/y1", y1) -%% Plotting -fig(1) =figure; +%% Plotting +% This is still part of a normal script to produce plots. +% Make sure to save each figure in a variable to pass to PlotID-functions. +fig(1) = figure; plot(x,y,'-k'); box off set(gca, 'TickDir', 'out', 'YLim', [0,4]); hold on -%fig(2) =figure; +%fig(2) = figure; plot(x1,y1,'-r'); set(gca, 'TickDir', 'out', 'YLim', [0,4]); -% Tag the plot +%% Tag the plot +% PlotID Implementation starts here. + [figs, ID] = TagPlot(fig, ProjectID); -%% publishing + +%% call a dummy function +% Place for post-processing of the plot, or additional related code. +a=1; +a = example_fcn(a); + +%% Publishing +% Second part of plotID % The functions needs the file location, the location of the data and the -% figure -path.script = mfilename('fullpath') % filename of the m.script +% figure and can take several options. +% TODO add explanations for Options +path.script = mfilename('fullpath'); % filename of the m.script -% file name of the data (should be extended to handle arrays) +% file name of the dataset path.rdata = {dataset1,dataset2} ; % don't forget the extension +Publish(path, ID, figs, 'Location', 'local','Method','centraliced') + +%% Second Plot with identical data to test centralized method +% + +fig2 =figure; +plot(x,y,'-k'); +hold on +plot(x1,y1,'-r'); -Publish(path, ID, figs, 'Location', 'local','Method','individual') +[fig2, ID] = TagPlot(fig2, ProjectID); +Publish(path, ID, fig2, 'Location', 'local','Method','centraliced') \ No newline at end of file diff --git a/example_fcn.m b/example_fcn.m new file mode 100644 index 0000000..418f15c --- /dev/null +++ b/example_fcn.m @@ -0,0 +1,6 @@ +function [outputArg1] = example_fcn(inputArg1) +%TEST_2 just a dummy function +outputArg1 = inputArg1; + +end + diff --git a/fcn_core/CreateID.m b/fcn_core/CreateID.m index 94d0df2..42ec2b2 100644 --- a/fcn_core/CreateID.m +++ b/fcn_core/CreateID.m @@ -11,7 +11,12 @@ switch method ID = posixtime(datetime('now')); %get current Unix time ID = dec2hex(int32(ID)); % get it as Hex pause(0.5); %Pausing for unique IDs - otherwise + case 2 % random UUID from Java 128 bit + %Static factory to retrieve a type 4 (pseudo randomly generated) UUID. + % The UUID is generated using a cryptographically strong pseudo random number generator. + temp = java.util.UUID.randomUUID; + ID = temp.toString; + otherwise error('The requested method is not defined yet'); end diff --git a/fcn_core/Publish.m b/fcn_core/Publish.m index eb0c428..e6952d7 100644 --- a/fcn_core/Publish.m +++ b/fcn_core/Publish.m @@ -11,15 +11,18 @@ arguments DataPaths ID (1,:) {mustBeNonzeroLengthText} % ID must be provided figures (1,:) {mustBeFigure} % Checks if Figures are figures - options.Location {mustBeMember(options.Location ,['local','server'])} = 'local' % storage path + options.Location {mustBeMember(options.Location ,['local','server','CI-Test'])} = 'local' % storage path options.Method {mustBeMember(options.Method ,['individual','centraliced'])} = 'individual' + options.CopyUserFCN (1,1) {mustBeNumericOrLogical} = true end switch options.Location case 'local' storPath = fullfile(pwd,'export'); case 'server' - storPath = '\\FST-220\Jans-50GB-SMB\Lemmer'; + storPath = '\\FST-220\Jans-50GB-SMB\Lemmer'; + case 'CI-Test' + storPath = fullfile(pwd,'CI_files','export'); end folderName = char(ID); @@ -32,40 +35,52 @@ end disp('Publishing started'); -%% Create a Copy of the script +%% Create a Copy of the script and User functions(optional) +createFileCopy({[DataPaths.script,'.m']},folderName,storPath,ID, 'script'); -try - %FileNameAndLocation=['C:\Users\Lemmer\Documents\GitLab\plot_identifier\MATLAB\test']; - FileNameAndLocation= DataPaths.script; - newbackup=sprintf([ID,'_script.m']); - currentfile=strcat(FileNameAndLocation, '.m'); - % Write a Copy of the Plotting Script - RemotePath = fullfile(storPath,folderName, newbackup); - copyfile(currentfile,RemotePath); - disp('Script sucessfully published'); -catch - warning('Script export was not sucessful') +if options.CopyUserFCN + [fList,pList] = matlab.codetools.requiredFilesAndProducts(DataPaths.script); + % plist contains the required MATLAB Toolboxes, maybe usefull in future + fList = fList(~ismember(fList,[DataPaths.script,'.m'])); % rmv script from list + fList = removePltIdFiles(fList); % Do not copy files that are part of plot ID + if ~isempty(fList) + createFileCopy(fList,folderName,storPath,ID,'userFcn'); + end end + %% Research data handeling switch options.Method case 'centraliced' % Work in progresss!!! - %check if data folder exists + % check if data folder exists if ~isfolder(fullfile(storPath,'data')) mkdir(fullfile(storPath,'data')); end + %list all files + fList = dir(fullfile(storPath,'data', '**\*.*')); %get list of files and folders in any subfolder + fList = fList(~[fList.isdir]); %remove folders from list + fList = struct2table(fList); + % Check if the new plot is based on the original data-set % copy the data(once) - createFileCopy(DataPaths.rdata,'data',storPath,ID); - % create a linked (soft) copy - - - + for i=1:numel(DataPaths.rdata) + % check if identical file exists (status = 1) + [~, idx] = fileCompare(DataPaths.rdata{i},fList); + % create Linked HDF5 files for identical files + if any(idx) + sourcePath = fList.name{idx}; % If there are multiple copies already, this only picks the last entry + if contains(sourcePath,{'.h5','.hdf5'}) % Linking only for HDF5 + createLinkedHDF5(sourcePath,storPath,ID); + end + else % no identical file exists + createFileCopy(DataPaths.rdata{i},'data',storPath,ID,'dataCentral'); + end + end case 'individual' % Create a copy of the research data - createFileCopy(DataPaths.rdata,folderName,storPath,ID); + createFileCopy(DataPaths.rdata,folderName,storPath,ID, 'data'); end %% Export the Plots -%try +try for i=1:numel(figures) fig = figures(i); PlotName = [ID,'_plot',num2str(i)]; % Der Plotnamen @@ -75,34 +90,14 @@ end exportgraphics(fig,[RemotePath,'.png'],'Resolution',300); disp([num2str(i),' of ',num2str(numel(figures)),' figures exported']); end -%catch - %warning('Plot export was not sucessful') -%end +catch + warning('Plot export was not successful') +end -disp(['Publishing of ', ID , ' done']); +disp(['publishing of ', ID , ' done']); end %function -function [] = createFileCopy(filePaths,folderName,storPath,ID) -% Creates a copy of the files (can used for multiple paths in a cell array) -% folderName is the name of the exporting folder - disp('Start to copy research data ...'); - try - for i = 1:numel(filePaths) - FileNameAndLocation = filePaths{i}; - [~,~,ext] = fileparts(filePaths{i}); % get the extension - newbackup = sprintf([ID,'_data',ext]); - - % Write the copied file - RemotePath = fullfile(storPath,folderName, newbackup); - copyfile(FileNameAndLocation,RemotePath); - end - disp('Research data sucessfully published'); - catch - warning('Research data export was not sucessful') - end %try -end - function tf = mustBeFigure(h) %checks if input is a figure object tf = strcmp(get(h, 'type'), 'figure') & isa(h, 'matlab.ui.Figure'); diff --git a/fcn_core/TagPlot.m b/fcn_core/TagPlot.m index 3c42626..4fac128 100644 --- a/fcn_core/TagPlot.m +++ b/fcn_core/TagPlot.m @@ -1,16 +1,50 @@ -function [figs, ID] = TagPlot(figs, prefix) +function [figs, ID] = TagPlot(figs, prefix, options) %TagPlot adds IDs to figures % The ID is placed visual on the figure window and as Tag (Property of figure) % TagPlot can tag multiple figures at once +% prefix is the project number (string or char) +% +% The ID is placed on the 'east' per default, if you want it somwhere +% else, use the 'Location' option. 'north','east','south','west' are +% predefined, otherwise use the 'custom' option and provide the desired +% 'Position' (relative to your x- and y-axis limits) arguments figs (1,:) {mustBeFigure} prefix (1,:) {mustBeText}= '' + options.Fontsize (1,1) {mustBeInteger} = 8 + options.Location (1,:) {mustBeText} = 'east' + options.Position (1,2) {mustBeVector} = [1,0.4] % default for east + options.Rotation (1,1) {mustBeInteger} = 0 end if isempty(prefix) warning('no project prefix defined') end +switch options.Location + case 'north' + options.Position = [0.4,0.95]; + options.Rotation = 0; + case 'east' + options.Position = [1,0.4]; + options.Rotation = 90; + case 'south' + options.Position = [0.4,.02]; + options.Rotation = 0; + case 'west' + options.Position = [.05,0.4]; + options.Rotation = 90; + case 'custom' + % Check if Position is valid + if ~all(0 <= options.Position & options.Position <= 1) + options.Position = [1,0.4]; + warning('options.Position is not valid, TagPlot default values instead'); + end + otherwise % set default position + warning([options.Location, ' is not a defined location, TagPlot uses location east instead']); + options.Location = 'east'; options.Position = [1,0.4]; +end + for n = 1:numel(figs) ID = CreateID; % Create ID ID = [prefix,'-',ID]; % add Prefix @@ -19,8 +53,10 @@ for n = 1:numel(figs) ylim =get(axes,'YLim'); xlim =get(axes,'XLim'); %ID - text(axes,xlim(2),0.4*ylim(2), ID,'Fontsize',8,'Rotation',90,'VerticalAlignment','bottom',... - 'Color', 0.65*[1 1 1],'BackgroundColor','w'); + position = [options.Position(1)*xlim(2), options.Position(2)*ylim(2)]; + text(axes,position(1),position(2), ID,'Fontsize',options.Fontsize,... + 'Rotation',options.Rotation, 'VerticalAlignment','bottom','Color',... + 0.65*[1 1 1],'BackgroundColor','w'); set(figs(n),'Tag', ID); end diff --git a/fcn_help/FileCompare.m b/fcn_help/FileCompare.m deleted file mode 100644 index aa5adfe..0000000 --- a/fcn_help/FileCompare.m +++ /dev/null @@ -1,29 +0,0 @@ -function [status] = fileCompare(filename1,filename2) -%UNTITLED2 Summary of this function goes here -% Detailed explanation goes here - -[~,~,ext1] = fileparts(filename1); -[~,~,ext2] = fileparts(filename2); - -if ~isequal(ext1,ext2) - warning('File extension are not identical'); - status = false; - return -end - -if ispc - filename2 = 'export\JL01-60DB3572\JL01-60DB3572_data.h5'; - filename1 = 'export\JL01-60DB3576\JL01-60DB3576_data.h5'; - [status,result] = system(['fc ' filename1 ' ' filename2]); - -elseif isunix %untested! - filename2 = 'export/JL01-60DB3572/JL01-60DB3572_data.h5'; - filename1 = 'export/JL01-60DB3576/JL01-60DB3576_data.h5'; - [status,result] = system(['diff ' filename1 ' ' filename2]); -else - warning('Platform not supported') -end - - -end - diff --git a/fcn_help/createFileCopy.m b/fcn_help/createFileCopy.m new file mode 100644 index 0000000..4bf198e --- /dev/null +++ b/fcn_help/createFileCopy.m @@ -0,0 +1,52 @@ +function [] = createFileCopy(filePaths,folderName,storPath,ID,type) +% Creates a copy of the files (can be used for multiple paths in a cell array) +% folderName is the name of the exporting folder + disp(['start to copy ', type]); + + if ~iscell(filePaths) + %fixes Issue if Filepath is a char and not a cell array + filePaths = {filePaths}; + end + + try + for i = 1:numel(filePaths) + FileNameAndLocation = filePaths{i}; + [~,name,ext] = fileparts(filePaths{i}); % get the extension + + switch type + case 'data' + sufix = '_data'; + newfile = sprintf([ID, sufix, '_' , num2str(i) ,ext]); + case 'dataCentral' + %keep original name + newfile = sprintf([name,ext]); + case 'script' + sufix = '_script'; + newfile = sprintf([ID, sufix ,ext]); + case 'userFcn' + %keep original name + newfile = sprintf([name,ext]); + otherwise + error([type,' is not a valid type for createFileCopy']) + end %switch + + % Write the file + RemotePath = fullfile(storPath,folderName, newfile); + +% Check if remote file already exists + count = 0; + while isfile(RemotePath) && ismember(type,{'data','dataCentral'}) + % Add a Sufix number to new file name + count = count + 1; + [~,name,ext] = fileparts(RemotePath); + RemotePath = fullfile(storPath,folderName,... + [name,'_',num2str(count),ext]); + end + copyfile(FileNameAndLocation,RemotePath); + end + disp([type, ' sucessfully published']); + catch + warning([type,' export was not sucessful']) + end %try +end + diff --git a/fcn_help/createLinkedHDF5.m b/fcn_help/createLinkedHDF5.m index 5b1e971..2738fd1 100644 --- a/fcn_help/createLinkedHDF5.m +++ b/fcn_help/createLinkedHDF5.m @@ -1,20 +1,20 @@ function [status] = createLinkedHDF5(SourceFile,TargetPath,ID) -%UNTITLED4 Summary of this function goes here -% Detailed explanation goes here +%createLinkedHDF5 creates a HDF file that references the Sourcefile +% TargetPath is the storage location, ID the foldername +% Status returns true if the function was sucessfull plist_id = 'H5P_DEFAULT'; -% Work in Progress... Problem mit dem Pfad... - -try - fid = H5F.create(fullfile(TargetPath,[ID,'_data.h5'])); +% try + fid = H5F.create(fullfile(TargetPath,ID,[ID,'_data.h5'])); %create External Link to Sourcefile in the Group linkToExternal - H5L.create_external(SourceFile,'/',fid,'linkToExternal',plist_id,plist_id); + H5L.create_external(['..\data\',SourceFile],'/',fid, SourceFile ,plist_id,plist_id); H5F.close(fid); status = 1; -catch - warning('No linked HDF file was created'); - status = 0; -end +% catch +% warning('No linked HDF file was created'); +% status = 0; +% end + end diff --git a/fcn_help/fileCompare.m b/fcn_help/fileCompare.m new file mode 100644 index 0000000..c9007e7 --- /dev/null +++ b/fcn_help/fileCompare.m @@ -0,0 +1,49 @@ +function [status, id] = fileCompare(filename,fileList) +%fileCompare checks if file1 is (binary) identical to a file in filelist +% it returns a sttus and the id of the identical file +% the functions uses the windows system function fc or the unix function +% diff + +if isempty(fileList) + % no comparison necessary + status =false; + id = 0; + return +end + +[~,~,ext1] = fileparts(filename); +id = zeros(height(fileList),1); + +for i=1:height(fileList) + [~,~,ext2] = fileparts(fileList.name{i}); + + if ~isequal(ext1,ext2) + %warning('File extension are not identical'); + status = false; + continue + end + + filepath = fullfile(fileList.folder{i},fileList.name{i}); + if ispc + [status,~] = system(['fc ' filename ' ' filepath]); + % 0 -> identical, 1 -> not identical + status = ~status; % false (not identical), true(identical) + + elseif isunix %untested! + [status,~] = system(['diff ' filename ' ' filepath]); + else + warning('Platform not supported') + end + + if status == 1 + id(i) = 1; + else + % Status can also be any other number e.g. 2 + id(i) = 0; + end + + id =logical(id); %bugfix +end + +end + diff --git a/fcn_help/removePltIdFiles.m b/fcn_help/removePltIdFiles.m new file mode 100644 index 0000000..3080c22 --- /dev/null +++ b/fcn_help/removePltIdFiles.m @@ -0,0 +1,19 @@ +function [fListClean] = removePltIdFiles(fList) +%removePltIdFiles removes functions that are part of PlotID out of flist +% Detailed explanation goes here +%addpath('..\fcn_core'); + +[~,names,ext] = fileparts(fList); +names = strcat(names, ext); % add ext for comparison + +% Get a list of all .m files that are part of Plot id +PltID_flist = struct2table([dir('fcn_help'); dir('fcn_core')]); %get list of files +[~,~,PltID_flist.ext(:)] = fileparts(PltID_flist.name(:)); % add ext column + +PltID_flist = PltID_flist(strcmp(PltID_flist.ext,'.m'),:); + +% Comparison and filter +fListClean = fList(~ismember(names,PltID_flist.name)); + +end + diff --git a/fcn_help/replaceLinkedHDF5.m b/fcn_help/replaceLinkedHDF5.m new file mode 100644 index 0000000..e84e49f --- /dev/null +++ b/fcn_help/replaceLinkedHDF5.m @@ -0,0 +1,61 @@ +function replaceLinkedHDF5(linkedFilepath) +% replaceLinkedHDF5 replaces the HDF5, that contains only a link to another +% HDF5 File with a file containing the actual Data, thus turning it into an +% independent data file. It essentially turns the plotID option +% 'centralized' into 'individual'. +% Filepath is the location of the File that contains the link. The +% filepath to the linked data has to be present in the file itself. + + + +%% Check whether the only Objects present are links +h5inf = h5info(linkedFilepath); + +% default behaviour dont overwrite +overwrite = false; + +if isempty([h5inf.Groups, h5inf.Datasets, h5inf.Datatypes, h5inf.Attributes]) && ... + all(size(h5inf.Links) == [1 1]) + % There are no other known objects present and + % there is only one linked file + overwrite = true; +end + +%% Create Copies of files +for i = 1:size(h5inf.Links, 2) + % This is the file with full data + linkTargetPath = h5inf.Links(i).Value{1,1}; + % This is the empty file + % TODO filename decision + linkSourcePath = strcat(linkedFilepath,'_',num2str(i)); + + % Create an absolute path from the relative linking path + absoluteTP = regexp(linkSourcePath, filesep, 'split'); + TargetPathSplit = regexp(linkTargetPath, filesep, 'split'); + % How many levels do we need to go up in the relative path + % This is merely counting the occurances of '..' within the path, but + % should not cause issues if the realtive path was created by the + % linking process + levelsUp = sum(contains(TargetPathSplit,'..')); + absoluteTP = absoluteTP(1:(end-(1+levelsUp)) ); %Remove filename + levels + linkTargetPath = strjoin([absoluteTP, TargetPathSplit(~contains(TargetPathSplit,'..'))],filesep); + + if ~isfile(linkTargetPath) + warning(strcat("Link destination """,linkTargetPath,""" does not exist or relative path does not fit, no copy created")) + end + + if overwrite % can only be for i=1, and size = 1 + linkSourcePath = linkedFilepath; + end + disp('Copying file from ', linkSourcePath, ' to ', linkTargetPath) + copyfile(linkTargetPath,linkSourcePath); + +end + + + +end + + + + diff --git a/test_data.mat b/test_data.mat deleted file mode 100644 index 06ca1639f8c3febb925fb5bbdc67b1953a894ab6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1526 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 DFQ(E- diff --git a/testdata_2.h5 b/testdata_2.h5 deleted file mode 100644 index efc071f84eaf0f39c147f2e74f80c4666ff22467..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3064 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 R_H&k-7@Pn3XAiBd?Ez^13^4!z -- GitLab