Skip to content

Commit 809ca19

Browse files
committed
lint
1 parent 58e47f6 commit 809ca19

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

python/src/bioscript/biovault.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,9 @@ def _generate_participant_workflow_nf(self, entrypoint: Optional[str] = None) ->
763763
if aggregated_path is None:
764764
aggregated_path = output_spec.path
765765
# Extract classifier name from aggregated path (e.g., result_HERC2.tsv -> HERC2)
766-
if aggregated_path.startswith("result_") and aggregated_path.endswith(".tsv"):
766+
if aggregated_path.startswith("result_") and aggregated_path.endswith(
767+
".tsv"
768+
):
767769
classifier_name = aggregated_path[7:-4] # Remove "result_" and ".tsv"
768770

769771
if not classifier_name:

0 commit comments

Comments
 (0)