-
Notifications
You must be signed in to change notification settings - Fork 3
31 lines (31 loc) · 1.4 KB
/
Copy pathci.yml
File metadata and controls
31 lines (31 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Lint-and-test
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install --upgrade pip
- run: pip install -r requirements.txt
- run: python src/pyparser.py data/example/*.txt
- run: md5sum multiqc_matrix.tsv
- run: python src/excel2tsv.py data/experiment_metadata.xlsx data/sheet
- run: python src/lint.py data/experiment_metadata.xlsx testing/DME --dry-run
- run: python src/initialize.py testing/DME testing/DME/meta CCBR_EXT_Archive --convert
- run: cat testing/DME/logs/data_dictionary.txt
- run: cat testing/DME/logs/project_information.txt
- run: cat testing/DME/logs/sample_information.txt
- run: cat testing/DME/data_dictionary.json
- run: cat testing/DME/project.json
- run: cat testing/DME/sample.json
- run: cat testing/DME/meta/PI_Lab_CurtisHarris_LHC.metadata.json
- run: cat testing/DME/meta/PI_Lab_CurtisHarris_LHC/Project_JaneDoe_ATRF-SF_212RNA-seq_*.metadata.json
- run: cat testing/DME/meta/PI_Lab_CurtisHarris_LHC/Project_JaneDoe_ATRF-SF_212RNA-seq_*/Sample_AC633_SILNM3.metadata.json
- run: find testing/DME/ -iname '*.json' -type f -exec md5sum {} \;
- run: find testing/DME/meta/ -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'