-
Notifications
You must be signed in to change notification settings - Fork 1
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
214d975
commit be0d2f2
Showing
8 changed files
with
54 additions
and
9 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 |
---|---|---|
|
@@ -130,3 +130,5 @@ dmypy.json | |
|
||
.vscode | ||
output | ||
|
||
.DS_Store |
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
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
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,4 +1,16 @@ | ||
1. File naming should be consistent. The convention for python files is lower | ||
case letters with '_' to separate words. E.g., `BindingMod.py` -> | ||
case letters with `_` to separate words. E.g., `BindingMod.py` -> | ||
`binding_mod.py`. | ||
2. Sort imports with Ruff (I did this for you) | ||
2. Sort imports with Ruff (I did this for you) | ||
3. Run `ruff check` again with the rules I declared in `pyproject.toml`. There | ||
are a few small issues outlined in the output. | ||
4. When possible, use `snake_case` for variable and function naming. Officially, | ||
the PEP8 convention specifies that variable names should only include lower case | ||
letters, but it makes sense for us to ignore that part of the convention | ||
sometimes, particularly when we're implementing mathematical functions which | ||
were described in a math paper elsewhere, where uppercase variable names were | ||
used (e.g. binding model paper uses R_eq). | ||
5. I believe `bicytok/data/epitopeSelectivityList.csv`, | ||
`bicytok/data/MonomericMutSingleCellData.csv`, | ||
`bicytok/data/WTDimericMutSingleCellData.csv`, `bicytok/data/WTmutAffData.csv` | ||
are unused. |
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 |
---|---|---|
|
@@ -43,5 +43,7 @@ select = [ | |
"SIM", | ||
# isort | ||
"I", | ||
# Unused arguments | ||
"ARG", | ||
] | ||
|