Skip to content

Commit bfb5d68

Browse files
authored
Merge pull request #14 from LewisLabUCSD/develop
Regular merge of develop
2 parents 5840c21 + 364f929 commit bfb5d68

Some content is hidden

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

51 files changed

+711
-528
lines changed

.artenolis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
language: bash
2+
3+
before_install:
4+
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
5+
6+
script:
7+
# set the environment variable CURRENT_DIR
8+
- CURRENT_DIR=`pwd`
9+
10+
# change to the current directory
11+
- cd $CURRENT_DIR
12+
13+
# launch the tests
14+
- bash .artenolis/runtests.sh
15+
16+
after_success:
17+
18+
# submit coverage report
19+
#- if [[ "$MATLAB_VER" == "R2018b" && "$ARCH" == "Linux" ]]; then
20+
# bash <(curl -s https://codecov.io/bash) -f "!*.lst";
21+
# fi

.artenolis/runtests.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/sh
2+
3+
# launch MATLAB
4+
if [ "$ARCH" == "Linux" ]; then
5+
$ARTENOLIS_SOFT_PATH/MATLAB/$MATLAB_VER/bin/./matlab -nodesktop -nosplash -r "fprintf('Hello ARTENOLIS.\n'); quit();"
6+
fi
7+
8+
CODE=$?
9+
exit $CODE

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.asv
2+
*.m~
3+
*.mex*
4+
.DS_Store

input/MT_iCHOv1_final.mat

882 KB
Binary file not shown.

input/MT_iHsa.mat

576 KB
Binary file not shown.

input/MT_iMM1415.mat

203 KB
Binary file not shown.

input/MT_iRno.mat

583 KB
Binary file not shown.

input/MT_inesMouseModel.mat

190 KB
Binary file not shown.

input/MT_quek14.mat

617 KB
Binary file not shown.

input/MT_recon_1.mat

1.35 MB
Binary file not shown.

0 commit comments

Comments
 (0)