Skip to content

Commit 5c08367

Browse files
authored
Merge pull request #21 from uab-cgds-worthey/dev
DITTO using Neural Networks and SHAP
2 parents 4bb01fc + db07a13 commit 5c08367

Some content is hidden

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

70 files changed

+66922
-6188
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
# global definitions
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
indent_size = 4
10+
indent_style = space
11+
12+
# override indents for specific filetypes
13+
[*.{md,yml,yaml,html,css,scss,js,cff}]
14+
indent_size = 2
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
16+
**Expected behavior**
17+
A clear and concise description of what you expected to happen.
18+
19+
**Screenshots**
20+
If applicable, add screenshots to help explain your problem.
21+
22+
**Environment used**
23+
OS, relevant tool versions, etc.
24+
25+
**Additional context**
26+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/pull_request_template.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
* **Please check if the PR fulfills these requirements**
2+
- [ ] Tested as per the documentation and they passed
3+
- [ ] Docs have been added / updated (for bug fixes / features)
4+
5+
6+
* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)
7+
8+
9+
10+
* **What is the current behavior?** (You can also link to an open issue here)
11+
12+
13+
14+
* **What is the new behavior (if this is a feature change)?**
15+
16+
17+
18+
* **Does this PR introduce a breaking change?** (What changes might users need to make in their application due to this PR?)
19+
20+
21+
22+
* **Other information**:

.github/workflows/linting.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Linting- Markdown,Shell
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
markdown-linting:
9+
name: Markdown lint
10+
runs-on: ubuntu-22.04
11+
12+
steps:
13+
- name: Checkout Code
14+
uses: actions/checkout@v3
15+
16+
- name: markdownlint-cli
17+
uses: nosborn/[email protected]
18+
with:
19+
files: .
20+
config_file: ".markdownlint.json"
21+
# dot: false
22+
# ignore_files: '".git*/**"'
23+
24+
25+
markdown-check-links:
26+
name: Markdown - checking links
27+
runs-on: ubuntu-22.04
28+
steps:
29+
- uses: actions/checkout@v3
30+
- uses: gaurav-nelson/github-action-markdown-link-check@v1
31+
with:
32+
config-file: ".markdownlint.json"
33+
34+
shellcheck:
35+
name: Shellcheck
36+
runs-on: ubuntu-22.04
37+
steps:
38+
- uses: actions/checkout@v3
39+
- name: Run ShellCheck
40+
uses: ludeeus/action-shellcheck@master

.gitignore

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,7 @@ dask-worker-space/
2525
*.egg
2626
*.err
2727
*.out
28-
*.db
29-
*.py*.sh
30-
*.tsv
31-
*.csv
32-
*.gz*
33-
28+
.DS_Store
3429

3530
# PyInstaller
3631
# Usually these files are written by a python script from a template
@@ -51,7 +46,6 @@ htmlcov/
5146
nosetests.xml
5247
coverage.xml
5348
*,cover
54-
*.pdf
5549

5650
# Translations
5751
*.mo
@@ -72,9 +66,6 @@ target/
7266
# conda
7367
.conda
7468

75-
# Database
76-
*.db
77-
*.rdb
7869

7970
# Pycharm
8071
.idea
@@ -83,17 +74,13 @@ target/
8374
.ipynb_checkpoints/
8475

8576
# exclude data from source control by default
86-
/data/
87-
cagi*/
77+
work
8878

89-
#snakemake
79+
#snakemake or nextflow
9080
.snakemake/
91-
# data/
92-
variant_annotation/data/
93-
94-
# exclude test data used for development
95-
to_be_deleted/test_data/data/ref
96-
to_be_deleted/test_data/data/reads
81+
.nextflow/
82+
.nextflow*
83+
report*
9784

9885
#logs
9986
logs/
@@ -103,5 +90,3 @@ logs/
10390

10491
# .java/fonts dir get created when creating fastqc conda env
10592
.java/
106-
107-
/.vscode/settings.json

.markdownlint.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"default": true,
3+
"MD007": {
4+
"indent": 2
5+
},
6+
"MD013": {
7+
"line_length": 120,
8+
"tables": false
9+
}
10+
}

0 commit comments

Comments
 (0)