Compare commits

..

2 Commits

Author SHA1 Message Date
9dce2d26b6 Merge branch 'master' into develop
All checks were successful
ydeng/filterfasta/pipeline/head This commit looks good
2023-04-24 09:46:25 -05:00
a6871214a4 Added test to check installation
All checks were successful
ydeng/filterfasta/pipeline/head This commit looks good
2023-04-22 16:33:30 -05:00
4 changed files with 5 additions and 5 deletions

2
.vscode/launch.json vendored
View File

@ -8,7 +8,7 @@
"name": "Run Fasta Filter",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/filterfasta/filterfasta.py",
"module": "filterfasta.cli",
"args": [
"reference_standards.fas",
"reference_standards_filtered.fas",

5
Jenkinsfile vendored
View File

@ -8,7 +8,8 @@ pipeline {
}
stage("install") {
steps {
sh 'mamba env update --file environment.yml --prefix ./env || mamba env create --force --file environment.yml --prefix ./env'
sh 'mamba env update --file environment.yml'
sh 'echo "mamba activate filterfasta" >> ~/.bashrc'
}
}
stage("build") {
@ -24,7 +25,7 @@ pipeline {
}
stage("archive") {
steps {
archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true
archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl'
}
}
stage("publish") {

View File

@ -7,4 +7,3 @@ dependencies:
- twine=4
- biopython=1.81
- python=3.11
prefix: ./env

View File

@ -1,6 +1,6 @@
[metadata]
name = filterfasta
version = 0.0.3
version = 0.0.2
[options]
packages = filterfasta