Skip to content

Commit b18cb81

Browse files
committed
update copyright format in help - closes #215
1 parent 708b590 commit b18cb81

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+45
-3
lines changed

cpp_bids.m

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ function cpp_bids(varargin)
1616
%
1717
% Example::
1818
%
19+
1920
% (C) Copyright 2022 CPP_BIDS developers
2021

2122
p = inputParser;
@@ -35,7 +36,7 @@ function cpp_bids(varargin)
3536
case 'init'
3637

3738
initCppBids(verbose);
38-
39+
3940
case 'dev'
4041

4142
initCppBids(verbose);
@@ -44,7 +45,6 @@ function cpp_bids(varargin)
4445
addpath(testFolder, '-begin');
4546
utilFolder = fullfile(thisDirectory, 'tests', 'utils');
4647
addpath(utilFolder, '-begin');
47-
4848

4949
case 'uninit'
5050

@@ -67,6 +67,7 @@ function initCppBids(verbose)
6767
%
6868
% initCppPtb()
6969
%
70+
7071
% (C) Copyright 2022 CPP_BIDS developers
7172

7273
thisDirectory = fileparts(mfilename('fullpath'));
@@ -136,6 +137,7 @@ function uninitCppBids()
136137
%
137138
% uninitCppPtb()
138139
%
140+
139141
% (C) Copyright 2021 CPP_BIDS developers
140142

141143
global CPP_BIDS_INITIALIZED
@@ -168,6 +170,7 @@ function uninitCppBids()
168170
%
169171
% :returns: :retval: (boolean)
170172
%
173+
171174
% (C) Copyright 2020 Agah Karakuzu
172175
% (C) Copyright 2022 CPP_BIDS developers
173176

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sphinx_rtd_theme
55
myst-parser
66
sphinx-copybutton
77

8-
miss_hit==0.9.29
8+
miss_hit==0.9.35
99
pre-commit
1010

1111
notebook

runTests.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
function runTests()
22
%
3+
34
% (C) Copyright 2022 CPP_BIDS developers
45

56
% Elapsed time is ??? seconds.

src/checkCFG.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@
180180
% cfg.bids.meg.DigitizedLandmarks = [];
181181
% cfg.bids.meg.DigitizedHeadPoints = [];
182182
%
183+
183184
% (C) Copyright 2020 CPP_BIDS developers
184185

185186
if nargin < 1 || isempty(cfg)

src/convertSourceToRaw.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ function convertSourceToRaw(varargin)
2020
% - :removes: the date suffix ``_date-*`` from the files where it is present
2121
% - :zips: the ``_stim.tsv`` files.
2222
%
23+
2324
% (C) Copyright 2020 CPP_BIDS developers
2425

2526
args = inputParser;

src/createDataDictionary.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ function createDataDictionary(cfg, logFile)
1212
% :param logFile: Contains the data you want to save.
1313
% :type logFile: structure
1414
%
15+
1516
% (C) Copyright 2020 CPP_BIDS developers
1617

1718
fileName = strrep(logFile(1).filename, '.tsv', '.json');

src/createDatasetDescription.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ function createDatasetDescription(cfg)
1212
%
1313
% :output: - :``dataset_description.json``: (jsonfile)
1414
%
15+
1516
% (C) Copyright 2020 CPP_BIDS developers
1617

1718
opts.Indent = ' ';

src/createFilename.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
%
3434
% See ``test_createFilename`` in the ``tests`` folder for more details on how to use it.
3535
%
36+
3637
% (C) Copyright 2020 CPP_BIDS developers
3738

3839
cfg = checkCFG(cfg);

src/createJson.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ function createJson(varargin)
3131
% on the arguments passed in.
3232
%
3333
%
34+
3435
% (C) Copyright 2020 CPP_BIDS developers
3536

3637
%% Parse inputs

src/readAndFilterLogfile.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
% See also: bids.transformers.filter
4343
%
4444
%
45+
4546
% (C) Copyright 2020 CPP_BIDS developers
4647

4748
% Check if input is cfg or the file path and assign the output filename for later saving

0 commit comments

Comments
 (0)