Skip to content

Commit f1181b4

Browse files
committed
Fix app name
1 parent 0266d51 commit f1181b4

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

yunta/cli.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -240,10 +240,12 @@ def main() -> None:
240240
main=_af2_many_vs_many,
241241
options=[inputs_list, inputs_list2, list_file, interspecies, output, params, recycles, plot])
242242

243-
app = CLIApp("sppid",
244-
version=__version__,
245-
description="Screening protein-protein interactions using DCA, RosettaFold-2track, and AlphaFold2.",
246-
commands=[dca_single, dca_many, rf2t_single, af2_single, af2_many])
243+
app = CLIApp(
244+
"yunta",
245+
version=__version__,
246+
description="Screening protein-protein interactions using DCA, RosettaFold-2track, and AlphaFold2.",
247+
commands=[dca_single, dca_many, rf2t_single, af2_single, af2_many],
248+
)
247249

248250
app.run()
249251
return None

0 commit comments

Comments
 (0)