Compare commits
4 Commits
2a80c2aea2
...
1d0da9a675
Author | SHA1 | Date | |
---|---|---|---|
1d0da9a675 | |||
f1ceb1438c | |||
b8fa4b5208 | |||
50210a884d |
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -28,7 +28,7 @@ pipeline {
|
||||
}
|
||||
steps {
|
||||
withCredentials([usernamePassword(credentialsId: 'rs-git-package-registry-ydeng', passwordVariable: 'PASS', usernameVariable: 'USER')]) {
|
||||
sh "python -m twine upload --repository-url https://git.reslate.systems/api/packages/${USER}/pypi -u ${USER} -p ${PASS} --non-interactive --disable-progress-bar --verbose dist/*"
|
||||
sh returnStatus: true, script: 'python -m twine upload --repository-url https://git.reslate.systems/api/packages/${USER}/pypi -u ${USER} -p ${PASS} --non-interactive --disable-progress-bar --verbose dist/*'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,6 @@
|
||||
from Bio.Align import PairwiseAligner, substitution_matrices
|
||||
from exceptions import UnexpectedAlignmentResult
|
||||
|
||||
from datatypes import AlignedSequence
|
||||
from bmlsa.datatypes import AlignedSequence
|
||||
from bmlsa.exceptions import UnexpectedAlignmentResult
|
||||
|
||||
|
||||
def protein_align_many_to_one_ssw(sequence: str, queries: dict[str, AlignedSequence]):
|
||||
@ -36,7 +35,7 @@ def protein_align_many_to_one_ssw(sequence: str, queries: dict[str, AlignedSeque
|
||||
alignment.query,
|
||||
query.name,
|
||||
query.description,
|
||||
aligned_start,
|
||||
int(aligned_start) + 1,
|
||||
aligned_end,
|
||||
score,
|
||||
)
|
||||
|
@ -1,9 +1,9 @@
|
||||
import os
|
||||
import argparse
|
||||
from Bio import SeqIO
|
||||
from aligner import protein_align_many_to_one_ssw
|
||||
from bmlsa.aligner import protein_align_many_to_one_ssw
|
||||
|
||||
from persistence import read_annotations_from_csv, save_alignments_to_csv
|
||||
from bmlsa.persistence import read_annotations_from_csv, save_alignments_to_csv
|
||||
|
||||
|
||||
def main():
|
||||
|
@ -1,5 +1,6 @@
|
||||
import csv
|
||||
from datatypes import AlignedSequence
|
||||
|
||||
from bmlsa.datatypes import AlignedSequence
|
||||
|
||||
|
||||
def read_annotations_from_csv(
|
||||
|
Loading…
x
Reference in New Issue
Block a user