Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
plotID_matlab
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
plotID
plotID_matlab
Merge requests
!55
Implements
#96
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Implements
#96
96-analyse-der-verwendeten-funktionen-matlab-packages
into
development
Overview
0
Commits
5
Pipelines
1
Changes
4
Merged
Lemmer, Jan
requested to merge
96-analyse-der-verwendeten-funktionen-matlab-packages
into
development
3 years ago
Overview
0
Commits
5
Pipelines
1
Changes
4
Expand
Move removePltIdFile as local function in CopyUserFCn
Closes
#96 (closed)
0
0
Merge request reports
Compare
development
version 1
314302a3
3 years ago
development (base)
and
latest version
latest version
314302a3
5 commits,
3 years ago
version 1
314302a3
11 commits,
3 years ago
4 files
+
64
−
35
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
+PlotID/Publish.m
+
2
−
8
Options
@@ -161,13 +161,7 @@ dlgObj.userMSG(msg);
% user functions
if
options
.
CopyUserFCN
[
fList
,
pList
]
=
matlab
.
codetools
.
requiredFilesAndProducts
(
scriptPath
);
fList
=
fList
(
~
ismember
(
fList
,
scriptPath
));
% rmv script from list
fList
=
fList
(
~
contains
(
fList
,
'config.json'
));
% rmv config.json from list
fList
=
PlotID
.
removePltIdFiles
(
fList
);
% Do not copy files that are part of PlotID
if
~
isempty
(
fList
)
PlotID
.
createFileCopy
(
fList
,
folderName
,
storPath
,
ID
,
'userFcn'
);
end
toolboxList
=
PlotID
.
copyUserFCN
(
scriptPath
,
folderName
,
storPath
,
ID
);
end
%% Research data handling
@@ -239,7 +233,7 @@ meta.ProjectID = ID;
meta
.
CreationDate
=
datestr
(
now
);
meta
.
MatlabVersion
=
version
;
if
options
.
CopyUserFCN
meta
.
ToolboxVersions
=
p
List
;
meta
.
ToolboxVersions
=
toolbox
List
;
end
% write meta
metaPath
=
fullfile
(
storPath
,
folderName
,
'plotID_data.json'
);
Loading