-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from CBroz1/dev
Revise pytesting, update docker, add QC notebook
- Loading branch information
Showing
51 changed files
with
2,021 additions
and
796 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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// cSpell Settings | ||
//https://github.com/streetsidesoftware/vscode-spell-checker | ||
{ | ||
"version": "0.2", // Version of the setting file. Always 0.2 | ||
"language": "en", // language - current active spelling language | ||
"enabledLanguageIds": [ | ||
"markdown", "yaml" | ||
], | ||
// flagWords - list of words to be always considered incorrect | ||
// This is useful for offensive words and common spelling errors. | ||
// For example "hte" should be "the" | ||
"flagWords": [], | ||
"allowCompoundWords": true, | ||
"ignorePaths": [ | ||
], | ||
"words": [ | ||
"Theo", | ||
"filt", | ||
"djarchive", | ||
"tsub", | ||
"ssub", | ||
"stim", | ||
"trialized", | ||
"rval", | ||
"curations", | ||
"npix", | ||
"nchannels", | ||
"nframes", | ||
"nsamples", | ||
"neuropil", | ||
"POSIX", | ||
"deconvolution", | ||
"neuro", | ||
"pyplot", | ||
"imshow", | ||
"xpix", | ||
"ypix", | ||
"dtype", | ||
"twinx", | ||
"deconvolved", | ||
"xlabel", | ||
"ylabel", | ||
"PSTH", | ||
"iterrows", | ||
"cmap", | ||
"axvline", | ||
"axvline", | ||
"xlim", | ||
"ephys", | ||
"tqdm", | ||
"Pytests" | ||
] | ||
} |
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,25 @@ | ||
FROM datajoint/djbase:py3.9-debian-8eb1715 | ||
|
||
USER anaconda:anaconda | ||
|
||
COPY ./workflow-miniscope/docker/apt_requirements.txt /tmp/ | ||
RUN /entrypoint.sh echo "Installed dependencies." | ||
|
||
WORKDIR /main/workflow-miniscope | ||
|
||
# Always move local - conditional install in setup.sh | ||
COPY --chown=anaconda:anaconda ./element-lab/ /main/element-lab/ | ||
COPY --chown=anaconda:anaconda ./element-animal/ /main/element-animal/ | ||
COPY --chown=anaconda:anaconda ./element-session/ /main/element-session/ | ||
COPY --chown=anaconda:anaconda ./element-event/ /main/element-event/ | ||
COPY --chown=anaconda:anaconda ./element-interface/ /main/element-interface/ | ||
COPY --chown=anaconda:anaconda ./element-miniscope/ /main/element-miniscope/ | ||
COPY --chown=anaconda:anaconda ./workflow-miniscope/ /main/workflow-miniscope/ | ||
|
||
# Conditional install - local-all, local-dlc, or git | ||
COPY --chown=anaconda:anaconda ./workflow-miniscope/docker/setup.sh /main/ | ||
COPY --chown=anaconda:anaconda ./workflow-miniscope/docker/.env /main/ | ||
RUN chmod 755 /main/setup.sh | ||
RUN chmod 755 /main/.env | ||
RUN /main/setup.sh | ||
RUN rm -f ./dj_local_conf.json |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.