I am analyzing our data with Pybis and now, we like to setup an url-shortcut in our file system to the analyzed experiment in openbis.
I found the permid/code from the experiment but not the (permanent) url where it is stored in openbis. Is there a way to get this using Pybis?
I found a workaround by using a valid link which is displayed in the webapp and replacing the permId from the experiment and the object:
exp_id = sample.experiment.permId
obj_id = sample.permId
exp_url = "https://xxxxxxxx.de/openbis/webapp/eln-lims/?menuUniqueId=%7B%22type%22:%22EXPERIMENT%22,%22id%22:%" + exp_id + "%22%7D&viewName=showViewSamplePageFromPermId&viewData=\"" + obj_id + "\""
and saving the url as shortcut:
with open('shortcut_name.url', mode='w', newline='\r\n') as f:
f.write("[InternetShortcut]\nURL=" + exp_url)