generated from theislab/sc_analysis_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aecc276
commit 3c20337
Showing
7 changed files
with
106 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "" | ||
labels: bug | ||
assignees: "" | ||
--- | ||
|
||
<!-- Describe the bug --> | ||
|
||
## Description | ||
|
||
[TEXT HERE] | ||
|
||
<!-- To reproduce --> | ||
|
||
```python | ||
# Your code here | ||
``` | ||
|
||
<!-- Put your Error output in this code block (if applicable, else delete the block): --> | ||
|
||
<details> <summary> Error output </summary> | ||
|
||
```pytb | ||
# Paste the error output here, if applicable | ||
``` | ||
|
||
</details> | ||
|
||
## Versions | ||
|
||
<details> <summary> Versions </summary> | ||
|
||
```pytb | ||
# Paste the ouput of tradeseq.__version__ and all relevant versions here | ||
``` | ||
|
||
</details> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: "" | ||
labels: enhancement | ||
assignees: "" | ||
--- | ||
|
||
## Description | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
|
||
<!-- A clear and concise description of what the problem is. For example: I need to do [...] which is not possible because [...]. --> | ||
|
||
**Describe the solution you are looking for.** | ||
|
||
<!-- A clear and concise description of what you want to happen. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## Changes | ||
|
||
<!-- Please remove section if this PR does change an existing feature --> | ||
|
||
- ... | ||
|
||
## Bug fixes | ||
|
||
<!-- Please give section if this PR does not fix any bugs --> | ||
|
||
- ... | ||
|
||
## New | ||
|
||
<!-- Please give section if this PR does not implement a new feature --> | ||
|
||
- ... | ||
|
||
## Related issues | ||
|
||
<!-- Please list related issues. If none exist, open one and reference it here. --> | ||
|
||
Closes # |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Lint | ||
|
||
on: | ||
push: | ||
branches: main | ||
pull_request: | ||
branches: main | ||
|
||
jobs: | ||
linting: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup Python 3.10 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pre-commit | ||
- name: Check pre-commit compatibility | ||
run: pre-commit run --all-files --show-diff-on-failure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Analysis template repository | ||
This contains the raw structure I usually use when doing single-cell/spatial data analysis. | ||
|
||
This contains the raw structure I usually use when doing single-cell/spatial data analysis. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters