main/scripts/fsxl-helper.py [7:19]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
fsList = fileSystems['FileSystems']

fileSystem=None
for fs in fsList:
    tags = fs['Tags']
    for tag in tags:
        key=tag['Key']
        value=tag['Value']
        if value.startswith('BioimageSearch'):
            fileSystem=fs
            break
        
if fileSystem==None:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



main/src/training-compute/training-compute.py [35:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    fsList = fileSystems['FileSystems']
    fileSystem=None
    for fs in fsList:
        tags = fs['Tags']
        for tag in tags:
            key=tag['Key']
            value=tag['Value']
            if value.startswith('BioimageSearch'):
                fileSystem=fs
                break
    if fileSystem==None:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



