-
Notifications
You must be signed in to change notification settings - Fork 4
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
9a0eae3
commit a6d8772
Showing
4 changed files
with
53 additions
and
50 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,27 @@ | ||
{ | ||
"name": "ont_preprocess", | ||
"image": "mcr.microsoft.com/devcontainers/python:0-3.9", | ||
"postCreateCommand": "bash .devcontainer/setup.sh", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"GitHub.copilot", | ||
"eamodio.gitlens", | ||
"codezombiech.gitignore", | ||
"ms-python.python", | ||
"Gruntfuggly.todo-tree", | ||
"ms-azuretools.vscode-docker", | ||
"ms-vscode-remote.remote-ssh" | ||
] | ||
} | ||
}, | ||
"features": { | ||
"ghcr.io/mamba-org/devcontainer-features/micromamba:1": { | ||
"version": "latest", | ||
"channels": "conda-forge,bioconda" | ||
}, | ||
"ghcr.io/withfig/features/fig:1": { | ||
"version": "latest" | ||
} | ||
} | ||
} |
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,15 @@ | ||
#!/bin/bash | ||
|
||
# OS install | ||
sudo apt-get update -y | ||
## tools | ||
sudo apt-get install -y tree screen curl python3.8 | ||
|
||
# dependencies | ||
#mamba install python=3.8 bioconda::hmmer scipy pandas numpy matplotlib | ||
micromamba env create -f conda_env.yml -y | ||
|
||
# package install | ||
python -m pip install --upgrade pip | ||
pip install pytest pytest-dependency pytest-console-scripts | ||
pip install . |
This file was deleted.
Oops, something went wrong.
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,11 @@ | ||
name: traitar3 | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- pip | ||
- matplotlib=3.7.0 | ||
- numpy=1.24.2 | ||
- pandas=1.5.3 | ||
- scipy=1.10.1 | ||
- hmmer=3.3.2 |