Skip to content

Commit

Permalink
remove unused fake news inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jfennick committed Apr 4, 2024
1 parent ccda7be commit dd9310e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion workflows/bbbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ def workflow() -> Workflow:
subdirectory = Step(clt_path='../workflow-inference-compiler/cwl_adapters/subdirectory.cwl')
subdirectory.directory = bbbcdownload.outDir
subdirectory.glob_pattern = 'bbbcdownload.outDir/BBBC/BBBC001/raw/Images/human_ht29_colon_cancer_1_images/'
subdirectory.subdirectory = Path('subdirectory.subdirectory')

filerenaming = Step(clt_path='../image-workflows/cwl_adapters/file-renaming.cwl')
# NOTE: FilePattern {} syntax shadows python f-string {} syntax
Expand Down
2 changes: 0 additions & 2 deletions workflows/bbbc_sub.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ def workflow() -> Workflow:
subdirectory = Step(clt_path='../workflow-inference-compiler/cwl_adapters/subdirectory.cwl')
subdirectory.directory = bbbcdownload.outDir
subdirectory.glob_pattern = 'bbbcdownload.outDir/BBBC/BBBC001/raw/Images/human_ht29_colon_cancer_1_images/'
subdirectory.subdirectory = Path('subdirectory.subdirectory')

filerenaming = Step(clt_path='cwl_adapters/file-renaming.cwl')
# NOTE: FilePattern {} syntax shadows python f-string {} syntax
Expand Down Expand Up @@ -46,7 +45,6 @@ def workflow2() -> Workflow:
# i.e. This is the API for the subworkflow.
subworkflow.steps[0].directory = subworkflow.directory
subworkflow.steps[0].glob_pattern = subworkflow.glob_pattern
subworkflow.steps[0].subdirectory = Path('subdirectory.subdirectory')

# Then apply arguments at the call site.
# Notice how the caller does not need to know about the internal details of the subworkflow
Expand Down

0 comments on commit dd9310e

Please sign in to comment.