Compare commits
No commits in common. "1d0da9a675c5fd8bec14a855e2b92b2e6b7d6064" and "2a80c2aea239be31f646360c558170ff391cc499" have entirely different histories.
1d0da9a675
...
2a80c2aea2
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 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/*'
|
||||
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/*"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
from Bio.Align import PairwiseAligner, substitution_matrices
|
||||
from bmlsa.datatypes import AlignedSequence
|
||||
from bmlsa.exceptions import UnexpectedAlignmentResult
|
||||
from exceptions import UnexpectedAlignmentResult
|
||||
|
||||
from datatypes import AlignedSequence
|
||||
|
||||
|
||||
def protein_align_many_to_one_ssw(sequence: str, queries: dict[str, AlignedSequence]):
|
||||
@ -35,7 +36,7 @@ def protein_align_many_to_one_ssw(sequence: str, queries: dict[str, AlignedSeque
|
||||
alignment.query,
|
||||
query.name,
|
||||
query.description,
|
||||
int(aligned_start) + 1,
|
||||
aligned_start,
|
||||
aligned_end,
|
||||
score,
|
||||
)
|
||||
|
@ -1,9 +1,9 @@
|
||||
import os
|
||||
import argparse
|
||||
from Bio import SeqIO
|
||||
from bmlsa.aligner import protein_align_many_to_one_ssw
|
||||
from aligner import protein_align_many_to_one_ssw
|
||||
|
||||
from bmlsa.persistence import read_annotations_from_csv, save_alignments_to_csv
|
||||
from persistence import read_annotations_from_csv, save_alignments_to_csv
|
||||
|
||||
|
||||
def main():
|
||||
|
@ -1,6 +1,5 @@
|
||||
import csv
|
||||
|
||||
from bmlsa.datatypes import AlignedSequence
|
||||
from datatypes import AlignedSequence
|
||||
|
||||
|
||||
def read_annotations_from_csv(
|
||||
|
Loading…
x
Reference in New Issue
Block a user