Skip to content

Commit

Permalink
Merge pull request #21 from uab-cgds-worthey/dev
Browse files Browse the repository at this point in the history
DITTO using Neural Networks and SHAP
  • Loading branch information
tkmamidi committed Feb 2, 2024
2 parents 4bb01fc + db07a13 commit 5c08367
Show file tree
Hide file tree
Showing 70 changed files with 66,922 additions and 6,188 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# top-most EditorConfig file
root = true

# global definitions
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_size = 4
indent_style = space

# override indents for specific filetypes
[*.{md,yml,yaml,html,css,scss,js,cff}]
indent_size = 2
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Environment used**
OS, relevant tool versions, etc.

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
22 changes: 22 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
* **Please check if the PR fulfills these requirements**
- [ ] Tested as per the documentation and they passed
- [ ] Docs have been added / updated (for bug fixes / features)


* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)



* **What is the current behavior?** (You can also link to an open issue here)



* **What is the new behavior (if this is a feature change)?**



* **Does this PR introduce a breaking change?** (What changes might users need to make in their application due to this PR?)



* **Other information**:
40 changes: 40 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Linting- Markdown,Shell

on:
push:
workflow_dispatch:

jobs:
markdown-linting:
name: Markdown lint
runs-on: ubuntu-22.04

steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: markdownlint-cli
uses: nosborn/github-action-markdown-cli@v3.3.0
with:
files: .
config_file: ".markdownlint.json"
# dot: false
# ignore_files: '".git*/**"'


markdown-check-links:
name: Markdown - checking links
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: ".markdownlint.json"

shellcheck:
name: Shellcheck
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
27 changes: 6 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,7 @@ dask-worker-space/
*.egg
*.err
*.out
*.db
*.py*.sh
*.tsv
*.csv
*.gz*

.DS_Store

# PyInstaller
# Usually these files are written by a python script from a template
Expand All @@ -51,7 +46,6 @@ htmlcov/
nosetests.xml
coverage.xml
*,cover
*.pdf

# Translations
*.mo
Expand All @@ -72,9 +66,6 @@ target/
# conda
.conda

# Database
*.db
*.rdb

# Pycharm
.idea
Expand All @@ -83,17 +74,13 @@ target/
.ipynb_checkpoints/

# exclude data from source control by default
/data/
cagi*/
work

#snakemake
#snakemake or nextflow
.snakemake/
# data/
variant_annotation/data/

# exclude test data used for development
to_be_deleted/test_data/data/ref
to_be_deleted/test_data/data/reads
.nextflow/
.nextflow*
report*

#logs
logs/
Expand All @@ -103,5 +90,3 @@ logs/

# .java/fonts dir get created when creating fastqc conda env
.java/

/.vscode/settings.json
10 changes: 10 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"default": true,
"MD007": {
"indent": 2
},
"MD013": {
"line_length": 120,
"tables": false
}
}
Loading

0 comments on commit 5c08367

Please sign in to comment.