Removed "Gooey" as dependency and fixed "setup.cfg"
Some checks failed
ydeng/splitmsa/pipeline/head There was a failure building this commit

This commit is contained in:
Harrison Deng 2023-04-20 15:25:55 -05:00
parent 8b379198ec
commit cf9df14fce
4 changed files with 6 additions and 5 deletions

5
Jenkinsfile vendored
View File

@ -12,6 +12,11 @@ pipeline {
sh "python -m build"
}
}
stage("test") {
steps {
sh "pip install dist/*.whl"
}
}
stage("publish") {
when {
branch '**/master'

View File

@ -6,5 +6,4 @@ dependencies:
- pytest=7.2.2
- twine=4.0.2
- biopython=1.81
- gooey=1.0.8.1
- python=3.9

View File

@ -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 =

View File

@ -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",