Skip to content

Commit 9231f7a

Browse files
authored
Merge pull request #20 from CCBR/iss-18
Adds changelog, fixes bug with python/ray, fixes prepare output dir, adds bash script to submit to SLURM
2 parents 8aef060 + f29b6a7 commit 9231f7a

Some content is hidden

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

42 files changed

+316
-37
lines changed

.gitignore

100644100755
File mode changed.

.pre-commit-config.yaml.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
default_install_hook_types: [pre-commit, commit-msg]
2+
default_stages: [pre-commit]
3+
exclude: |
4+
(?x)(
5+
^assets/|
6+
^docs/.*.html|
7+
^_extensions/
8+
)
9+
repos:
10+
- repo: https://github.com/pre-commit/pre-commit-hooks
11+
rev: v1.2.3
12+
hooks:
13+
- id: check-added-large-files
14+
- id: end-of-file-fixer
15+
- id: trailing-whitespace
16+
- id: check-json
17+
# spell check
18+
- repo: https://github.com/codespell-project/codespell
19+
rev: v2.2.4
20+
hooks:
21+
- id: codespell
22+
# https://github.com/codespell-project/codespell/issues/1498
23+
# Python formatting
24+
- repo: https://github.com/psf/black
25+
rev: 23.7.0
26+
hooks:
27+
- id: black
28+
# R formatting
29+
- repo: https://github.com/lorenzwalthert/precommit
30+
rev: v0.1.2
31+
hooks:
32+
- id: style-files
33+
# general linting
34+
- repo: https://github.com/pre-commit/mirrors-prettier
35+
rev: v2.7.1
36+
hooks:
37+
- id: prettier
38+
# enforce commit format
39+
- repo: https://github.com/compilerla/conventional-pre-commit
40+
rev: v2.3.0
41+
hooks:
42+
- id: conventional-pre-commit
43+
stages: [commit-msg]
44+
args: []
45+
- repo: https://github.com/citation-file-format/cffconvert
46+
rev: 054bda51dbe278b3e86f27c890e3f3ac877d616c
47+
hooks:
48+
- id: validate-cff

.prettierignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# gitignore
2+
.nextflow*
3+
work/
4+
data/
5+
results/
6+
.DS_Store
7+
*.code-workspace
8+
assets/*.html

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
overrides:
2+
- files:
3+
- "*.md"
4+
- "*.cff"
5+
- ".prettierrc"
6+
options:
7+
tabWidth: 2

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# dev
2+
3+
# version v2.0
4+
- add CHANGELOG (iss#19, @slsevilla)
5+
- removes RAY from running (iss#17, @slsevilla)
6+
- adds metro_script, as temp workflow manager (iss#18, @slsevilla)
7+
- fixes prepare outdir bug (iss#15, @slsevilla)

CITATION.cff

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ identifiers:
3232
- description: Archived snapshots of all versions
3333
type: doi
3434
value: 10.5281/zenodo.6643611
35-
version: 1.3
35+
version: 2.0
3636
date-released: 2022-06-14

LICENSE

100644100755
File mode changed.

README.md

100644100755
File mode changed.

VERSION

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.2.1
1+
v2.0

data/BGL1_FpIhmvaf5_Variant.xlsx

100644100755
File mode changed.

0 commit comments

Comments
 (0)