Skip to content

Commit 9c92bcd

Browse files
committed
add CITATION.cff
1 parent a5f6efa commit 9c92bcd

File tree

2 files changed

+65
-0
lines changed

2 files changed

+65
-0
lines changed

CITATION.cff

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
cff-version: 1.2.0
2+
3+
title: "CPP localizer auditory motion"
4+
5+
version: 0.2.4
6+
7+
abstract: A localizer for auditory motion sensitive brain regions.
8+
9+
message: "If you use this software, please cite it as below."
10+
11+
repository-code: "https://github.com/cpp-lln-lab/localizer_auditory_motion.git"
12+
13+
contact:
14+
- affiliation: "Université catholique de Louvain"
15+
16+
family-names: Gau
17+
given-names: Rémi
18+
19+
authors:
20+
- family-names: "Gau"
21+
given-names: "Rémi"
22+
orcid: "https://orcid.org/0000-0002-1535-9767"
23+
affiliation: "Université catholique de Louvain"
24+
25+
- family-names: "Barilari"
26+
given-names: "Marco"
27+
orcid: "https://orcid.org/0000-0002-3313-3120"
28+
affiliation: "Université catholique de Louvain"
29+
30+
31+
- family-names: "Rezk"
32+
given-names: "Mohamed"
33+
orcid: "https://orcid.org/0000-0002-1866-8645"
34+
affiliation: "Université catholique de Louvain"
35+
36+
license: MIT
37+
38+
keywords:
39+
- BIDS
40+
- brain imaging data structure
41+
- neuroscience
42+
- MATLAB
43+
- Octave

Makefile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# TODO make more general to use the local matlab version
2+
MATLAB = /usr/local/MATLAB/R2017a/bin/matlab
3+
ARG = -nodisplay -nosplash -nodesktop
4+
5+
.PHONY: clean manual fix_submodule
6+
clean: clean
7+
rm -rf version.txt
8+
9+
fix_submodule:
10+
git submodule update --init --recursive && git submodule update --recursive
11+
12+
lint:
13+
mh_style --fix && mh_metric --ci && mh_lint
14+
15+
test:
16+
$(MATLAB) $(ARG) -r "runTests; exit()"
17+
18+
version.txt: CITATION.cff
19+
grep -w "^version" CITATION.cff | sed "s/version: /v/g" > version.txt
20+
21+
validate_cff: CITATION.cff
22+
cffconvert --validate

0 commit comments

Comments
 (0)