Removed "Gooey" as dependency and fixed "setup.cfg"
Some checks failed
ydeng/splitmsa/pipeline/head There was a failure building this commit
Some checks failed
ydeng/splitmsa/pipeline/head There was a failure building this commit
This commit is contained in:
parent
8b379198ec
commit
cf9df14fce
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
@ -12,6 +12,11 @@ pipeline {
|
||||
sh "python -m build"
|
||||
}
|
||||
}
|
||||
stage("test") {
|
||||
steps {
|
||||
sh "pip install dist/*.whl"
|
||||
}
|
||||
}
|
||||
stage("publish") {
|
||||
when {
|
||||
branch '**/master'
|
||||
|
@ -6,5 +6,4 @@ dependencies:
|
||||
- pytest=7.2.2
|
||||
- twine=4.0.2
|
||||
- biopython=1.81
|
||||
- gooey=1.0.8.1
|
||||
- python=3.9
|
||||
|
@ -5,8 +5,7 @@ version = 0.0.1
|
||||
[options]
|
||||
packages = splitmsa
|
||||
install_requires =
|
||||
gooey
|
||||
Bio; python_version == "3.9"
|
||||
Bio ==1.81; python_version == "3.9"
|
||||
|
||||
[options.entry_points]
|
||||
console_scripts =
|
||||
|
@ -14,7 +14,6 @@ import os
|
||||
from Bio import SeqIO, SeqRecord
|
||||
from Bio.Seq import Seq
|
||||
import csv
|
||||
from gooey import Gooey
|
||||
|
||||
|
||||
def read_genes_from_csv(batch_genes_csv_path: str):
|
||||
@ -309,7 +308,6 @@ def run(args):
|
||||
info(f"Completed gene {gene_name} ({start} - {end})")
|
||||
|
||||
|
||||
@Gooey
|
||||
def main():
|
||||
parser = argparse.ArgumentParser(
|
||||
prog="splitmsa",
|
||||
|
Loading…
Reference in New Issue
Block a user