Compare commits

...

3 Commits

Author SHA1 Message Date
d75a83585c Merge branch 'master' of https://git.reslate.systems/ydeng/bmlsa and fingerprint archives
All checks were successful
ydeng/bmlsa/pipeline/head This commit looks good
2023-04-28 08:25:38 -05:00
f1fe568818 Added testing of pip installation and archiving
All checks were successful
ydeng/bmlsa/pipeline/head This commit looks good
2023-04-24 09:40:29 -05:00
59e2dcaa9d Updated 'README.md'
All checks were successful
ydeng/bmlsa/pipeline/head This commit looks good
2023-04-21 14:34:31 -05:00
2 changed files with 6 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -23,6 +23,11 @@ pipeline {
sh "bmlsa -h" sh "bmlsa -h"
} }
} }
stage("archive") {
steps {
archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true
}
}
stage("publish") { stage("publish") {
when { when {
branch '**/master' branch '**/master'

View File

@ -1,3 +1,3 @@
# BMLSA # BMLSA
A Basic multi local sequence alignment tool implemented with the Striped Smith Waterman algorithm A Basic multi local sequence alignment tool using the Biopython implementation of the Smith-Waterman alignment algorithm