From b93cf47efc52106991565cd10144711e35186888 Mon Sep 17 00:00:00 2001 From: Aiden Cohen Date: Fri, 28 Oct 2022 15:02:57 -0500 Subject: [PATCH 001/190] initial changes --- src/topology_utils.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/topology_utils.py b/src/topology_utils.py index 28cc6da24..441fc9d3a 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -6,6 +6,7 @@ import os import sys import urllib +import urllib3 import fnmatch import urllib.parse as urlparse @@ -45,19 +46,21 @@ def get_auth_session(args): if args.key: key = args.key - session = requests.Session() - + session = {} + session['cert_reqs'] = 'CERT_REQUIRED' if os.path.exists(cert): - session.cert = cert + session["cert_file"] = cert else: raise InvalidPathError("Error: could not find cert at %s" % cert) if os.path.exists(key): - session.cert = (cert, key) + session["cert_key"] = key else: raise InvalidPathError("Error: could not find key at %s" % key) + dpass = input("Decryption Pass") + session["key_password"] = dpass - return session + return urllib3.PoolManager(*session) def update_url_hostname(url, args): From c0110a560b6502641766c84ec0a14c12bacc2af1 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 20 Oct 2022 11:23:03 -0700 Subject: [PATCH 002/190] Update I2ManhattanInfrastructure.yaml --- .../Internet2Manhattan/I2ManhattanInfrastructure.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/topology/Internet2/Internet2Manhattan/I2ManhattanInfrastructure.yaml b/topology/Internet2/Internet2Manhattan/I2ManhattanInfrastructure.yaml index fdc195c9d..0c1bcbef4 100644 --- a/topology/Internet2/Internet2Manhattan/I2ManhattanInfrastructure.yaml +++ b/topology/Internet2/Internet2Manhattan/I2ManhattanInfrastructure.yaml @@ -22,8 +22,5 @@ Resources: Services: XRootD cache server: Description: Internet2 Manhattan Cache - Details: - #endpoint_override: osg-new-york-stashcache.nrp.internet2.edu:8000 - auth_endpoint_override: osg-new-york-stashcache.nrp.internet2.edu:8444 AllowedVOs: - ANY From f2dc5a57ab3c86059d69e79ea2729220ffd3ceb0 Mon Sep 17 00:00:00 2001 From: Aiden Cohen Date: Fri, 28 Oct 2022 15:10:51 -0500 Subject: [PATCH 003/190] aiden --- src/topology_utils.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/topology_utils.py b/src/topology_utils.py index 28cc6da24..a551b8e3b 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -45,19 +45,20 @@ def get_auth_session(args): if args.key: key = args.key - session = requests.Session() + session = {} if os.path.exists(cert): - session.cert = cert + session["cert_file"] = cert else: raise InvalidPathError("Error: could not find cert at %s" % cert) if os.path.exists(key): - session.cert = (cert, key) + session["key_file"] = key else: raise InvalidPathError("Error: could not find key at %s" % key) - - return session + session['cert_reqs'] = 'CERT_REQUIRED' + session['key_password'] = input("decryption password: ") + return urlib3.PoolManager(*session) def update_url_hostname(url, args): From a8ec70fda073aac5c66a46f942f8fbab83551d0d Mon Sep 17 00:00:00 2001 From: Aiden Cohen Date: Tue, 29 Nov 2022 14:18:11 -0600 Subject: [PATCH 004/190] finished last touches --- src/topology_utils.py | 80 +++++++++++++++++++++++-------------------- 1 file changed, 42 insertions(+), 38 deletions(-) diff --git a/src/topology_utils.py b/src/topology_utils.py index a551b8e3b..b4ded1d6b 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -5,10 +5,10 @@ import os import sys -import urllib +import urllib3 import fnmatch import urllib.parse as urlparse - +from getpass import getpass import xml.etree.ElementTree as ET import requests @@ -57,8 +57,7 @@ def get_auth_session(args): else: raise InvalidPathError("Error: could not find key at %s" % key) session['cert_reqs'] = 'CERT_REQUIRED' - session['key_password'] = input("decryption password: ") - return urlib3.PoolManager(*session) + return urllib3.PoolManager(**session, key_password=getpass("decryption password: ")) def update_url_hostname(url, args): @@ -132,7 +131,7 @@ def get_contact_list_info(contact_list): return contact_list_info -def get_vo_map(args, session=None): +def get_vo_map(args, pm=None): """ Generate a dictionary mapping from the VO name (key) to the VO ID (value). @@ -142,11 +141,11 @@ def get_vo_map(args, session=None): url = update_url_hostname("https://topology.opensciencegrid.org/vosummary" "/xml?all_vos=on&active_value=1", args) - if session is None: - with get_auth_session(args) as session: - response = session.get(url) + if pm is None: + pm = get_auth_session(args) + response = pm.request('GET',url) else: - response = session.get(url) + response = pm.request('GET',url) if old_no_proxy is not None: os.environ['no_proxy'] = old_no_proxy @@ -171,7 +170,7 @@ def get_vo_map(args, session=None): if 'ID' in vo_info and 'Name' in vo_info: vo_map[vo_info['Name'].lower()] = vo_info['ID'] - return vo_map + return vo_map,pm SERVICE_IDS = {'ce': 1, @@ -182,7 +181,7 @@ def get_vo_map(args, session=None): 'perfsonar-latency': 130, 'gums': 101, } -def mangle_url(url, args, session=None): +def mangle_url(url, args, pm=None): """ Given a MyOSG URL, switch to using the hostname specified in the arguments @@ -207,7 +206,7 @@ def mangle_url(url, args, session=None): qs_list.append(("service_sel[]", str(service_id))) if getattr(args, 'owner_vo', None): - vo_map = get_vo_map(args, session) + vo_map,pm = get_vo_map(args, pm) if 'voown' not in qs_dict: qs_list.append(("voown", "on")) for vo in args.owner_vo.split(","): @@ -220,10 +219,10 @@ def mangle_url(url, args, session=None): url_list[3] = urlparse.urlencode(qs_list, doseq=True) - return urlparse.urlunsplit(url_list) + return urlparse.urlunsplit(url_list),pm -def get_contacts(args, urltype, roottype): +def get_contacts(args, urltype, roottype, session=None): """ Get one type of contacts for OSG. """ @@ -232,43 +231,46 @@ def get_contacts(args, urltype, roottype): base_url = "https://topology.opensciencegrid.org/" + urltype + "summary/xml?" \ "&active=on&active_value=1&disable=on&disable_value=0" - with get_auth_session(args) as session: - url = mangle_url(base_url, args, session) + if(session == None): + session = get_auth_session(args) + url,session = mangle_url(base_url, args, session) + try: + response = session.request('GET',url) + except requests.exceptions.ConnectionError as exc: + print(exc) try: - response = session.get(url) - except requests.exceptions.ConnectionError as exc: - try: - if exc.args[0].args[1].errno == 22: - raise IncorrectPasswordError("Incorrect password, please try again") - else: - raise exc - except (TypeError, AttributeError, IndexError): - raise exc + if exc.args[0].args[1].errno == 22: + raise IncorrectPasswordError("Incorrect password, please try again") + else: + raise exc + except (TypeError, AttributeError, IndexError): + print(exc) + raise exc if old_no_proxy is not None: os.environ['no_proxy'] = old_no_proxy else: del os.environ['no_proxy'] - if response.status_code != requests.codes.ok: + if response.status != requests.codes.ok: print("MyOSG request failed (status %d): %s" % \ (response.status_code, response.text[:2048]), file=sys.stderr) return None - root = ET.fromstring(response.content) + root = ET.fromstring(response.data) if root.tag != roottype + 'Summary': print("MyOSG returned invalid XML with root tag %s" % root.tag, file=sys.stderr) return None - return root + return root, session -def get_vo_contacts(args): +def get_vo_contacts(args, pm = None): """ Get resource contacts for OSG. Return results. """ - root = get_contacts(args, 'vo', 'VO') + root,pm = get_contacts(args, 'vo', 'VO', pm) if root is None: return 1 @@ -291,17 +293,17 @@ def get_vo_contacts(args): if name and contact_list_info: results[name] = contact_list_info - return results + return results, pm -def get_resource_contacts_by_name_and_fqdn(args): +def get_resource_contacts_by_name_and_fqdn(args, pm = None): """ Get resource contacts for OSG. Return results. Returns two dictionaries, one keyed on the resource name and one keyed on the resource FQDN. """ - root = get_contacts(args, 'rg', 'Resource') + root, pm = get_contacts(args, 'rg', 'Resource', pm) if root is None: return {}, {} @@ -336,15 +338,17 @@ def get_resource_contacts_by_name_and_fqdn(args): if resource_fqdn: results_by_fqdn[resource_fqdn] = contact_list_info - return results_by_name, results_by_fqdn + return results_by_name, results_by_fqdn, pm -def get_resource_contacts(args): - return get_resource_contacts_by_name_and_fqdn(args)[0] +def get_resource_contacts(args, pm = None): + res = get_resource_contacts_by_name_and_fqdn(args, pm) + return res[0], res[2] -def get_resource_contacts_by_fqdn(args): - return get_resource_contacts_by_name_and_fqdn(args)[1] +def get_resource_contacts_by_fqdn(args, pm=None): + res = get_resource_contacts_by_name_and_fqdn(args, pm) + return res[1], res[2] def filter_contacts(args, results): From 08b7804973c48952dedf0bc07ffee02eea2d0736 Mon Sep 17 00:00:00 2001 From: Aiden Cohen Date: Tue, 29 Nov 2022 14:19:37 -0600 Subject: [PATCH 005/190] finished last touches --- bin/osg-notify | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/osg-notify b/bin/osg-notify index be2c043a3..a77065c3e 100755 --- a/bin/osg-notify +++ b/bin/osg-notify @@ -173,13 +173,13 @@ def has_non_printable_ascii_characters(contents): def main(): args = parseargs() - + pm = None recipients = set(args.recipients.split()) if args.oim_recipients and 'vos' in args.oim_recipients: attempts = 3 while attempts > 0: try: - results = topology_utils.get_vo_contacts(args) + results,pm = topology_utils.get_vo_contacts(args, pm) except topology_utils.InvalidPathError as exc: print(exc) exit(1) @@ -202,9 +202,9 @@ def main(): while attempts > 0: try: if args.fqdn_filter: - results = topology_utils.get_resource_contacts_by_fqdn(args) + results, pm = topology_utils.get_resource_contacts_by_fqdn(args, pm) else: - results = topology_utils.get_resource_contacts(args) + results, pm = topology_utils.get_resource_contacts(args, pm) except topology_utils.InvalidPathError as exc: exit(str(exc)) except topology_utils.IncorrectPasswordError as exc: From 4a32d2122f3fdf8dbabee47bbaea24acc8aa3a09 Mon Sep 17 00:00:00 2001 From: Aiden Cohen Date: Tue, 13 Dec 2022 15:34:04 -0600 Subject: [PATCH 006/190] Revamped structure --- bin/osg-notify | 13 +- src/topology_utils.py | 749 +++++++++++++++++++++--------------------- 2 files changed, 375 insertions(+), 387 deletions(-) diff --git a/bin/osg-notify b/bin/osg-notify index a77065c3e..9f982a9ab 100755 --- a/bin/osg-notify +++ b/bin/osg-notify @@ -21,6 +21,7 @@ if __name__ == "__main__" and __package__ is None: sys.path.append(_parent + "/src") import topology_utils +from topology_utils import OSGPoolManager import net_name_addr_utils # Parts of this implementation are from the following StackOverflow answer: @@ -173,13 +174,13 @@ def has_non_printable_ascii_characters(contents): def main(): args = parseargs() - pm = None + pm = OSGPoolManager() recipients = set(args.recipients.split()) if args.oim_recipients and 'vos' in args.oim_recipients: attempts = 3 while attempts > 0: try: - results,pm = topology_utils.get_vo_contacts(args, pm) + results = pm.get_vo_contacts(args) except topology_utils.InvalidPathError as exc: print(exc) exit(1) @@ -190,7 +191,7 @@ def main(): exit(1) else: print(exc) - results = topology_utils.filter_contacts(args, results) + results = OSGPoolManager.filter_contacts(args, results) emails = set() for name in results.keys(): for contact in results[name]: @@ -202,9 +203,9 @@ def main(): while attempts > 0: try: if args.fqdn_filter: - results, pm = topology_utils.get_resource_contacts_by_fqdn(args, pm) + results = pm.get_resource_contacts_by_fqdn(args) else: - results, pm = topology_utils.get_resource_contacts(args, pm) + results = pm.get_resource_contacts(args) except topology_utils.InvalidPathError as exc: exit(str(exc)) except topology_utils.IncorrectPasswordError as exc: @@ -213,7 +214,7 @@ def main(): exit("Too many incorrect password attempts, exiting") else: print(exc) - results = topology_utils.filter_contacts(args, results) + results = OSGPoolManager.filter_contacts(args, results) emails = set() for name in results.keys(): for contact in results[name]: diff --git a/src/topology_utils.py b/src/topology_utils.py index 5009211d9..6e8f14706 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -5,10 +5,6 @@ import os import sys -<<<<<<< HEAD -======= -import urllib ->>>>>>> master import urllib3 import fnmatch import urllib.parse as urlparse @@ -29,384 +25,375 @@ class InvalidPathError(AuthError): class IncorrectPasswordError(AuthError): pass -def get_auth_session(args): - """ - Return a requests session ready for an XML query. - """ - euid = os.geteuid() - if euid == 0: - cert = '/etc/grid-security/hostcert.pem' - key = '/etc/grid-security/hostkey.pem' - else: - cert = '/tmp/x509up_u%d' % euid - key = '/tmp/x509up_u%d' % euid - - cert = os.environ.get('X509_USER_PROXY', cert) - key = os.environ.get('X509_USER_PROXY', key) - - if args.cert: - cert = args.cert - if args.key: - key = args.key - - session = {} -<<<<<<< HEAD - -======= - session['cert_reqs'] = 'CERT_REQUIRED' ->>>>>>> master - if os.path.exists(cert): - session["cert_file"] = cert - else: - raise InvalidPathError("Error: could not find cert at %s" % cert) - - if os.path.exists(key): -<<<<<<< HEAD - session["key_file"] = key - else: - raise InvalidPathError("Error: could not find key at %s" % key) - session['cert_reqs'] = 'CERT_REQUIRED' - return urllib3.PoolManager(**session, key_password=getpass("decryption password: ")) -======= - session["cert_key"] = key - else: - raise InvalidPathError("Error: could not find key at %s" % key) - dpass = input("Decryption Pass") - session["key_password"] = dpass - - return urllib3.PoolManager(*session) ->>>>>>> master - - -def update_url_hostname(url, args): - """ - Given a URL and an argument object, update the URL's hostname - according to args.host and return the newly-formed URL. - """ - if not args.host: - return url - url_list = list(urlparse.urlsplit(url)) - url_list[1] = args.host - return urlparse.urlunsplit(url_list) - - -def get_contact_list_info(contact_list): - """ - Get contact list info out of contact list - - In rgsummary, this looks like: - - - Administrative Contact - - - Matyas Selmeci +class OSGPoolManager(urllib3.PoolManager): + + def __init__(self): + self.session = False + super().__init__() + + def get_auth_session(self,args): + """ + Return a requests session ready for an XML query. + """ + euid = os.geteuid() + if euid == 0: + cert = '/etc/grid-security/hostcert.pem' + key = '/etc/grid-security/hostkey.pem' + else: + cert = '/tmp/x509up_u%d' % euid + key = '/tmp/x509up_u%d' % euid + + cert = os.environ.get('X509_USER_PROXY', cert) + key = os.environ.get('X509_USER_PROXY', key) + + if args.cert: + cert = args.cert + if args.key: + key = args.key + + session = {} + if os.path.exists(cert): + session["cert_file"] = cert + else: + raise InvalidPathError("Error: could not find cert at %s" % cert) + + if os.path.exists(key): + session["key_file"] = key + else: + raise InvalidPathError("Error: could not find key at %s" % key) + session['cert_reqs'] = 'CERT_REQUIRED' + session['key_password'] = getpass("decryption password: ") + super().__dict__.update(**session) + return True + + @staticmethod + def update_url_hostname(url, args): + """ + Given a URL and an argument object, update the URL's hostname + according to args.host and return the newly-formed URL. + """ + if not args.host: + return url + url_list = list(urlparse.urlsplit(url)) + url_list[1] = args.host + return urlparse.urlunsplit(url_list) + + @staticmethod + def get_contact_list_info(contact_list): + """ + Get contact list info out of contact list + + In rgsummary, this looks like: + + + Administrative Contact + + + Matyas Selmeci + ... + + + + ... + + + and the arg `contact_list` is the contents of a single + + If vosummary, this looks like: + + + Miscellaneous Contact + + + ... + ... + ... - - - - ... - - - and the arg `contact_list` is the contents of a single - - If vosummary, this looks like: - - - Miscellaneous Contact - - - ... - ... - - ... - - - ... - - - and the arg `contact_list` is the contents of - - - Returns: a list of dicts that each look like: - { 'ContactType': 'Administrative Contact', - 'Name': 'Matyas Selmeci', - 'Email': '...', - ... - } - """ - contact_list_info = [] - for contact in contact_list: - if contact.tag == 'ContactType' or contact.tag == 'Type': - contact_list_type = contact.text.lower() - if contact.tag == 'Contacts': - for con in contact: - contact_info = { 'ContactType' : contact_list_type } - for contact_contents in con: - contact_info[contact_contents.tag] = contact_contents.text - contact_list_info.append(contact_info) - - return contact_list_info - - -def get_vo_map(args, pm=None): - """ - Generate a dictionary mapping from the VO name (key) to the - VO ID (value). - """ - old_no_proxy = os.environ.pop('no_proxy', None) - os.environ['no_proxy'] = '.opensciencegrid.org' - - url = update_url_hostname("https://topology.opensciencegrid.org/vosummary" - "/xml?all_vos=on&active_value=1", args) - if pm is None: - pm = get_auth_session(args) - response = pm.request('GET',url) - else: - response = pm.request('GET',url) - - if old_no_proxy is not None: - os.environ['no_proxy'] = old_no_proxy - else: - del os.environ['no_proxy'] - - if response.status_code != requests.codes.ok: - raise Exception("MyOSG request failed (status %d): %s" % \ - (response.status_code, response.text[:2048])) - - root = ET.fromstring(response.content) - if root.tag != 'VOSummary': - raise Exception("MyOSG returned invalid XML with root tag %s" % root.tag) - vo_map = {} - for child_vo in root: - if child_vo.tag != "VO": - raise Exception("MyOSG returned a non-VO (%s) inside VO summary." % \ - root.tag) - vo_info = {} - for child_info in child_vo: - vo_info[child_info.tag] = child_info.text - if 'ID' in vo_info and 'Name' in vo_info: - vo_map[vo_info['Name'].lower()] = vo_info['ID'] - - return vo_map,pm - - -SERVICE_IDS = {'ce': 1, - 'srmv2': 3, - 'gridftp': 5, - 'xrootd': 142, - 'perfsonar-bandwidth': 130, - 'perfsonar-latency': 130, - 'gums': 101, - } -def mangle_url(url, args, pm=None): - """ - Given a MyOSG URL, switch to using the hostname specified in the - arguments - """ - if not args.host: - return url - url_list = list(urlparse.urlsplit(url)) - url_list[1] = args.host - - qs_dict = urlparse.parse_qs(url_list[3]) - qs_list = urlparse.parse_qsl(url_list[3]) - - if getattr(args, 'provides_service', None): - if 'service' not in qs_dict: - qs_list.append(("service", "on")) - for service in args.provides_service.split(","): - service = service.strip().lower() - service_id = SERVICE_IDS.get(service) - if not service_id: - raise Exception("Requested service %s not known; known service" - " names: %s" % (service, ", ".join(SERVICE_IDS))) - qs_list.append(("service_sel[]", str(service_id))) - - if getattr(args, 'owner_vo', None): - vo_map,pm = get_vo_map(args, pm) - if 'voown' not in qs_dict: - qs_list.append(("voown", "on")) - for vo in args.owner_vo.split(","): - vo = vo.strip().lower() - vo_id = vo_map.get(vo) - if not vo_id: - raise Exception("Requested owner VO %s not known; known VOs: %s" \ - % (vo, ", ".join(vo_map))) - qs_list.append(("voown_sel[]", str(vo_id))) - - url_list[3] = urlparse.urlencode(qs_list, doseq=True) - - return urlparse.urlunsplit(url_list),pm - - -def get_contacts(args, urltype, roottype, session=None): - """ - Get one type of contacts for OSG. - """ - old_no_proxy = os.environ.pop('no_proxy', None) - os.environ['no_proxy'] = '.opensciencegrid.org' - - base_url = "https://topology.opensciencegrid.org/" + urltype + "summary/xml?" \ - "&active=on&active_value=1&disable=on&disable_value=0" - if(session == None): - session = get_auth_session(args) - url,session = mangle_url(base_url, args, session) - try: - response = session.request('GET',url) - except requests.exceptions.ConnectionError as exc: - print(exc) + + + ... + + + and the arg `contact_list` is the contents of + + + Returns: a list of dicts that each look like: + { 'ContactType': 'Administrative Contact', + 'Name': 'Matyas Selmeci', + 'Email': '...', + ... + } + """ + contact_list_info = [] + for contact in contact_list: + if contact.tag == 'ContactType' or contact.tag == 'Type': + contact_list_type = contact.text.lower() + if contact.tag == 'Contacts': + for con in contact: + contact_info = { 'ContactType' : contact_list_type } + for contact_contents in con: + contact_info[contact_contents.tag] = contact_contents.text + contact_list_info.append(contact_info) + + return contact_list_info + + + def get_vo_map(self,args): + """ + Generate a dictionary mapping from the VO name (key) to the + VO ID (value). + """ + old_no_proxy = os.environ.pop('no_proxy', None) + os.environ['no_proxy'] = '.opensciencegrid.org' + + url = update_url_hostname("https://topology.opensciencegrid.org/vosummary" + "/xml?all_vos=on&active_value=1", args) + if not self.session: + self.session = self.get_auth_session(args) + response = self.request('GET',url) + else: + response = self.request('GET',url) + + if old_no_proxy is not None: + os.environ['no_proxy'] = old_no_proxy + else: + del os.environ['no_proxy'] + + if response.status_code != requests.codes.ok: + raise Exception("MyOSG request failed (status %d): %s" % \ + (response.status_code, response.text[:2048])) + + root = ET.fromstring(response.content) + if root.tag != 'VOSummary': + raise Exception("MyOSG returned invalid XML with root tag %s" % root.tag) + vo_map = {} + for child_vo in root: + if child_vo.tag != "VO": + raise Exception("MyOSG returned a non-VO (%s) inside VO summary." % \ + root.tag) + vo_info = {} + for child_info in child_vo: + vo_info[child_info.tag] = child_info.text + if 'ID' in vo_info and 'Name' in vo_info: + vo_map[vo_info['Name'].lower()] = vo_info['ID'] + + return vo_map + + + SERVICE_IDS = {'ce': 1, + 'srmv2': 3, + 'gridftp': 5, + 'xrootd': 142, + 'perfsonar-bandwidth': 130, + 'perfsonar-latency': 130, + 'gums': 101, + } + def mangle_url(self,url, args): + """ + Given a MyOSG URL, switch to using the hostname specified in the + arguments + """ + if not args.host: + return url + url_list = list(urlparse.urlsplit(url)) + url_list[1] = args.host + + qs_dict = urlparse.parse_qs(url_list[3]) + qs_list = urlparse.parse_qsl(url_list[3]) + + if getattr(args, 'provides_service', None): + if 'service' not in qs_dict: + qs_list.append(("service", "on")) + for service in args.provides_service.split(","): + service = service.strip().lower() + service_id = SERVICE_IDS.get(service) + if not service_id: + raise Exception("Requested service %s not known; known service" + " names: %s" % (service, ", ".join(SERVICE_IDS))) + qs_list.append(("service_sel[]", str(service_id))) + + if getattr(args, 'owner_vo', None): + vo_map = self.get_vo_map(args) + if 'voown' not in qs_dict: + qs_list.append(("voown", "on")) + for vo in args.owner_vo.split(","): + vo = vo.strip().lower() + vo_id = vo_map.get(vo) + if not vo_id: + raise Exception("Requested owner VO %s not known; known VOs: %s" \ + % (vo, ", ".join(vo_map))) + qs_list.append(("voown_sel[]", str(vo_id))) + + url_list[3] = urlparse.urlencode(qs_list, doseq=True) + + return urlparse.urlunsplit(url_list) + + + def get_contacts(self, args, urltype, roottype): + """ + Get one type of contacts for OSG. + """ + old_no_proxy = os.environ.pop('no_proxy', None) + os.environ['no_proxy'] = '.opensciencegrid.org' + + base_url = "https://topology.opensciencegrid.org/" + urltype + "summary/xml?" \ + "&active=on&active_value=1&disable=on&disable_value=0" + if(not self.session): + self.session = self.get_auth_session(args) + url = self.mangle_url(base_url, args) try: - if exc.args[0].args[1].errno == 22: - raise IncorrectPasswordError("Incorrect password, please try again") - else: - raise exc - except (TypeError, AttributeError, IndexError): - print(exc) - raise exc - - if old_no_proxy is not None: - os.environ['no_proxy'] = old_no_proxy - else: - del os.environ['no_proxy'] - - if response.status != requests.codes.ok: - print("MyOSG request failed (status %d): %s" % \ - (response.status_code, response.text[:2048]), file=sys.stderr) - return None - - root = ET.fromstring(response.data) - if root.tag != roottype + 'Summary': - print("MyOSG returned invalid XML with root tag %s" % root.tag, - file=sys.stderr) - return None - - return root, session - - -def get_vo_contacts(args, pm = None): - """ - Get resource contacts for OSG. Return results. - """ - root,pm = get_contacts(args, 'vo', 'VO', pm) - if root is None: - return 1 - - results = {} - for child_vo in root: - if child_vo.tag != "VO": - print("MyOSG returned a non-VO (%s) inside summary." % \ - root.tag, file=sys.stderr) + response = self.request('GET',url) + except requests.exceptions.ConnectionError as exc: + print(exc) + try: + if exc.args[0].args[1].errno == 22: + raise IncorrectPasswordError("Incorrect password, please try again") + else: + raise exc + except (TypeError, AttributeError, IndexError): + print(exc) + raise exc + + if old_no_proxy is not None: + os.environ['no_proxy'] = old_no_proxy + else: + del os.environ['no_proxy'] + + if response.status != requests.codes.ok: + print("MyOSG request failed (status %d): %s" % \ + (response.status_code, response.text[:2048]), file=sys.stderr) + return None + + root = ET.fromstring(response.data) + if root.tag != roottype + 'Summary': + print("MyOSG returned invalid XML with root tag %s" % root.tag, + file=sys.stderr) + return None + + return root + + + def get_vo_contacts(self,args): + """ + Get resource contacts for OSG. Return results. + """ + root = self.get_contacts(args, 'vo', 'VO') + if root is None: return 1 - name = None - contact_list_info = [] - for item in child_vo: - if item.tag == 'Name': - name = item.text - if item.tag == "ContactTypes": - for contact_type in item: - contact_list_info.extend( \ - get_contact_list_info(contact_type)) - - if name and contact_list_info: - results[name] = contact_list_info - - return results, pm - - -def get_resource_contacts_by_name_and_fqdn(args, pm = None): - """ - Get resource contacts for OSG. Return results. - - Returns two dictionaries, one keyed on the resource name and one keyed on - the resource FQDN. - """ - root, pm = get_contacts(args, 'rg', 'Resource', pm) - if root is None: - return {}, {} - - results_by_name = {} - results_by_fqdn = {} - for child_rg in root: - if child_rg.tag != "ResourceGroup": - print("MyOSG returned a non-resource group (%s) inside summary." % \ - root.tag, file=sys.stderr) + + results = {} + for child_vo in root: + if child_vo.tag != "VO": + print("MyOSG returned a non-VO (%s) inside summary." % \ + root.tag, file=sys.stderr) + return 1 + name = None + contact_list_info = [] + for item in child_vo: + if item.tag == 'Name': + name = item.text + if item.tag == "ContactTypes": + for contact_type in item: + contact_list_info.extend( \ + get_contact_list_info(contact_type)) + + if name and contact_list_info: + results[name] = contact_list_info + + return results + + + def get_resource_contacts_by_name_and_fqdn(self,args): + """ + Get resource contacts for OSG. Return results. + + Returns two dictionaries, one keyed on the resource name and one keyed on + the resource FQDN. + """ + root = self.get_contacts(args, 'rg', 'Resource') + if root is None: return {}, {} - for child_res in child_rg: - if child_res.tag != "Resources": - continue - for resource in child_res: - resource_name = None - resource_fqdn = None - contact_list_info = [] - for resource_tag in resource: - if resource_tag.tag == 'Name': - resource_name = resource_tag.text - if resource_tag.tag == 'FQDN': - resource_fqdn = resource_tag.text - if resource_tag.tag == 'ContactLists': - for contact_list in resource_tag: - if contact_list.tag == 'ContactList': - contact_list_info.extend( \ - get_contact_list_info(contact_list)) - - if contact_list_info: - if resource_name: - results_by_name[resource_name] = contact_list_info - if resource_fqdn: - results_by_fqdn[resource_fqdn] = contact_list_info - - return results_by_name, results_by_fqdn, pm - - -def get_resource_contacts(args, pm = None): - res = get_resource_contacts_by_name_and_fqdn(args, pm) - return res[0], res[2] - - -def get_resource_contacts_by_fqdn(args, pm=None): - res = get_resource_contacts_by_name_and_fqdn(args, pm) - return res[1], res[2] - - -def filter_contacts(args, results): - """ - Given a set of result contacts, filter them according to given arguments - """ - results = dict(results) # make a copy so we don't modify the original - - if getattr(args, 'name_filter', None): - # filter out undesired names - for name in list(results): - if not fnmatch.fnmatch(name, args.name_filter) and \ - args.name_filter not in name: - del results[name] - elif getattr(args, 'fqdn_filter', None): - # filter out undesired FQDNs - for fqdn in list(results): - if not fnmatch.fnmatch(fqdn, args.fqdn_filter) and \ - args.fqdn_filter not in fqdn: - del results[fqdn] - - if args.contact_type != 'all': - # filter out undesired contact types - for name in list(results): - contact_list = [] - for contact in results[name]: - contact_type = contact['ContactType'] - if contact_type.startswith(args.contact_type): - contact_list.append(contact) - if contact_list == []: - del results[name] - else: - results[name] = contact_list - - if getattr(args, 'contact_emails', None): - for name in list(results): - contact_list = [contact for contact in results[name] if contact['Email'] in args.contact_emails] - if not contact_list: - del results[name] - else: - results[name] = contact_list - - return results + + results_by_name = {} + results_by_fqdn = {} + for child_rg in root: + if child_rg.tag != "ResourceGroup": + print("MyOSG returned a non-resource group (%s) inside summary." % \ + root.tag, file=sys.stderr) + return {}, {} + for child_res in child_rg: + if child_res.tag != "Resources": + continue + for resource in child_res: + resource_name = None + resource_fqdn = None + contact_list_info = [] + for resource_tag in resource: + if resource_tag.tag == 'Name': + resource_name = resource_tag.text + if resource_tag.tag == 'FQDN': + resource_fqdn = resource_tag.text + if resource_tag.tag == 'ContactLists': + for contact_list in resource_tag: + if contact_list.tag == 'ContactList': + contact_list_info.extend( \ + get_contact_list_info(contact_list)) + + if contact_list_info: + if resource_name: + results_by_name[resource_name] = contact_list_info + if resource_fqdn: + results_by_fqdn[resource_fqdn] = contact_list_info + + return results_by_name, results_by_fqdn + + + def get_resource_contacts(self,args): + return self.get_resource_contacts_by_name_and_fqdn(args)[0] + + + def get_resource_contacts_by_fqdn(self, args): + return self.get_resource_contacts_by_name_and_fqdn(args)[1] + + @staticmethod + def filter_contacts(args, results): + """ + Given a set of result contacts, filter them according to given arguments + """ + results = dict(results) # make a copy so we don't modify the original + + if getattr(args, 'name_filter', None): + # filter out undesired names + for name in list(results): + if not fnmatch.fnmatch(name, args.name_filter) and \ + args.name_filter not in name: + del results[name] + elif getattr(args, 'fqdn_filter', None): + # filter out undesired FQDNs + for fqdn in list(results): + if not fnmatch.fnmatch(fqdn, args.fqdn_filter) and \ + args.fqdn_filter not in fqdn: + del results[fqdn] + + if args.contact_type != 'all': + # filter out undesired contact types + for name in list(results): + contact_list = [] + for contact in results[name]: + contact_type = contact['ContactType'] + if contact_type.startswith(args.contact_type): + contact_list.append(contact) + if contact_list == []: + del results[name] + else: + results[name] = contact_list + + if getattr(args, 'contact_emails', None): + for name in list(results): + contact_list = [contact for contact in results[name] if contact['Email'] in args.contact_emails] + if not contact_list: + del results[name] + else: + results[name] = contact_list + + return results From 1f337fbf59adf661dc4b91d3aca34d1eec574d14 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Wed, 21 Dec 2022 17:40:36 -0600 Subject: [PATCH 007/190] Rename class to avoid future typos --- bin/osg-notify | 8 ++++---- src/topology_utils.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/osg-notify b/bin/osg-notify index 9f982a9ab..545587f2a 100755 --- a/bin/osg-notify +++ b/bin/osg-notify @@ -21,7 +21,7 @@ if __name__ == "__main__" and __package__ is None: sys.path.append(_parent + "/src") import topology_utils -from topology_utils import OSGPoolManager +from topology_utils import TopologyPoolManager import net_name_addr_utils # Parts of this implementation are from the following StackOverflow answer: @@ -174,7 +174,7 @@ def has_non_printable_ascii_characters(contents): def main(): args = parseargs() - pm = OSGPoolManager() + pm = TopologyPoolManager() recipients = set(args.recipients.split()) if args.oim_recipients and 'vos' in args.oim_recipients: attempts = 3 @@ -191,7 +191,7 @@ def main(): exit(1) else: print(exc) - results = OSGPoolManager.filter_contacts(args, results) + results = TopologyPoolManager.filter_contacts(args, results) emails = set() for name in results.keys(): for contact in results[name]: @@ -214,7 +214,7 @@ def main(): exit("Too many incorrect password attempts, exiting") else: print(exc) - results = OSGPoolManager.filter_contacts(args, results) + results = TopologyPoolManager.filter_contacts(args, results) emails = set() for name in results.keys(): for contact in results[name]: diff --git a/src/topology_utils.py b/src/topology_utils.py index 6e8f14706..79ca2ec74 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -25,7 +25,7 @@ class InvalidPathError(AuthError): class IncorrectPasswordError(AuthError): pass -class OSGPoolManager(urllib3.PoolManager): +class TopologyPoolManager(urllib3.PoolManager): def __init__(self): self.session = False From 994b6ba5a7ee1e5cbdf78e2e71e52028524a4a4d Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Thu, 14 Sep 2023 12:36:25 -0500 Subject: [PATCH 008/190] Create UWMadison_Payseur.yaml --- projects/UWMadison_Payseur.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 projects/UWMadison_Payseur.yaml diff --git a/projects/UWMadison_Payseur.yaml b/projects/UWMadison_Payseur.yaml new file mode 100644 index 000000000..dd02dbaed --- /dev/null +++ b/projects/UWMadison_Payseur.yaml @@ -0,0 +1,5 @@ +Department: Genetics +Description: Extending access to OSPool long-term following OSG User School +FieldOfScience: Genomics +Organization: University of Wisconsin-Madison +PIName: Bret Payseur From 90d3b8339bb08e057fa604fbac7795933b88adad Mon Sep 17 00:00:00 2001 From: Ilija Vukotic Date: Thu, 30 Nov 2023 11:09:20 -0600 Subject: [PATCH 009/190] Fix descriptions in MWT2 and AGLT2 topology files --- .../MWT2 ATLAS UC/MWT2.yaml | 41 ++++++++----------- .../University of Michigan/AGLT2/AGLT2.yaml | 8 ++-- 2 files changed, 20 insertions(+), 29 deletions(-) diff --git a/topology/University of Chicago/MWT2 ATLAS UC/MWT2.yaml b/topology/University of Chicago/MWT2 ATLAS UC/MWT2.yaml index 1ba06eff6..5894b19b7 100644 --- a/topology/University of Chicago/MWT2 ATLAS UC/MWT2.yaml +++ b/topology/University of Chicago/MWT2 ATLAS UC/MWT2.yaml @@ -327,8 +327,7 @@ Resources: Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi - Description: - MWT2 Gatekeeper located at University of Illinois @ Urbana-Champaign, IL + Description: MWT2 Gatekeeper located at University of Illinois @ Urbana-Champaign, IL FQDN: uiuc-gk.mwt2.org ID: 490 Services: @@ -379,8 +378,7 @@ Resources: Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi - Description: - MWT2 Gatekeeper located at University of Illinois @ Urbana-Champaign, IL + Description: MWT2 Gatekeeper located at University of Illinois @ Urbana-Champaign, IL FQDN: uiuc-gk02.mwt2.org ID: 1432 Services: @@ -431,8 +429,7 @@ Resources: Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi - Description: - MWT2 CVMFS Squid located at University of Illinois @ Urbana-Champaign, IL + Description: MWT2 CVMFS Squid located at University of Illinois @ Urbana-Champaign, IL FQDN: mwt2-cvmfs.campuscluster.illinois.edu ID: 914 Services: @@ -616,7 +613,7 @@ Resources: uri_override: iut2-slate01.mwt2.org:32200 Monitored: true VOOwnership: - ATLAS: 100 + ATLAS: 100 MWT2_SLATE_UIUC: Active: true ContactLists: @@ -668,8 +665,8 @@ Resources: ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan + ID: OSG1000064 + Name: Ilija Vukotic Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi @@ -681,8 +678,8 @@ Resources: ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan + ID: OSG1000064 + Name: Ilija Vukotic Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi @@ -706,8 +703,8 @@ Resources: ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan + ID: OSG1000064 + Name: Ilija Vukotic Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi @@ -719,8 +716,8 @@ Resources: ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan + ID: OSG1000064 + Name: Ilija Vukotic Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi @@ -746,11 +743,8 @@ Resources: ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan - Tertiary 2: - ID: OSG1000221 - Name: Farnaz Golnaraghi + ID: OSG1000064 + Name: Ilija Vukotic Security Contact: Primary: ID: a418fbc5dd33637bba264c01d84d52dd317f2813 @@ -759,11 +753,8 @@ Resources: ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan - Tertiary 2: - ID: OSG1000221 - Name: Farnaz Golnaraghi + ID: OSG1000064 + Name: Ilija Vukotic Description: Varnish cache located at Starlight, Chicago, IL FQDN: igrok-chcg.pacificwave.net Services: diff --git a/topology/University of Michigan/AGLT2/AGLT2.yaml b/topology/University of Michigan/AGLT2/AGLT2.yaml index 21f28082a..71d7a71ee 100644 --- a/topology/University of Michigan/AGLT2/AGLT2.yaml +++ b/topology/University of Michigan/AGLT2/AGLT2.yaml @@ -175,8 +175,8 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 737e25f3cb6a16c6c1846ee2601b5e5b102bc157 - Name: Wenjing Wu + ID: OSG1000064 + Name: Ilija Vukotic Secondary: ID: fe2ecaf4ad4a0923d1be605ad55a8ca71f67eb66 Name: Philippe Laurens @@ -185,8 +185,8 @@ Resources: Name: Shawn McKee Security Contact: Primary: - ID: 737e25f3cb6a16c6c1846ee2601b5e5b102bc157 - Name: Wenjing Wu + ID: OSG1000064 + Name: Ilija Vukotic Secondary: ID: fe2ecaf4ad4a0923d1be605ad55a8ca71f67eb66 Name: Philippe Laurens From 971c946c49311e233110ea28640d15d69d4b9d6a Mon Sep 17 00:00:00 2001 From: College Date: Fri, 16 Feb 2024 13:20:32 -0600 Subject: [PATCH 010/190] removed static methods in TopologyPoolManager --- bin/osg-notify | 4 ++-- src/topology_utils.py | 13 +++++-------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/bin/osg-notify b/bin/osg-notify index 545587f2a..c326f4dd9 100755 --- a/bin/osg-notify +++ b/bin/osg-notify @@ -191,7 +191,7 @@ def main(): exit(1) else: print(exc) - results = TopologyPoolManager.filter_contacts(args, results) + results = pm.filter_contacts(args, results) emails = set() for name in results.keys(): for contact in results[name]: @@ -214,7 +214,7 @@ def main(): exit("Too many incorrect password attempts, exiting") else: print(exc) - results = TopologyPoolManager.filter_contacts(args, results) + results = pm.filter_contacts(args, results) emails = set() for name in results.keys(): for contact in results[name]: diff --git a/src/topology_utils.py b/src/topology_utils.py index 79ca2ec74..7172653e3 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -66,7 +66,6 @@ def get_auth_session(self,args): super().__dict__.update(**session) return True - @staticmethod def update_url_hostname(url, args): """ Given a URL and an argument object, update the URL's hostname @@ -78,7 +77,6 @@ def update_url_hostname(url, args): url_list[1] = args.host return urlparse.urlunsplit(url_list) - @staticmethod def get_contact_list_info(contact_list): """ Get contact list info out of contact list @@ -146,7 +144,7 @@ def get_vo_map(self,args): old_no_proxy = os.environ.pop('no_proxy', None) os.environ['no_proxy'] = '.opensciencegrid.org' - url = update_url_hostname("https://topology.opensciencegrid.org/vosummary" + url = self.update_url_hostname("https://topology.opensciencegrid.org/vosummary" "/xml?all_vos=on&active_value=1", args) if not self.session: self.session = self.get_auth_session(args) @@ -206,10 +204,10 @@ def mangle_url(self,url, args): qs_list.append(("service", "on")) for service in args.provides_service.split(","): service = service.strip().lower() - service_id = SERVICE_IDS.get(service) + service_id = self.SERVICE_IDS.get(service) if not service_id: raise Exception("Requested service %s not known; known service" - " names: %s" % (service, ", ".join(SERVICE_IDS))) + " names: %s" % (service, ", ".join(self.SERVICE_IDS))) qs_list.append(("service_sel[]", str(service_id))) if getattr(args, 'owner_vo', None): @@ -295,7 +293,7 @@ def get_vo_contacts(self,args): if item.tag == "ContactTypes": for contact_type in item: contact_list_info.extend( \ - get_contact_list_info(contact_type)) + self.get_contact_list_info(contact_type)) if name and contact_list_info: results[name] = contact_list_info @@ -337,7 +335,7 @@ def get_resource_contacts_by_name_and_fqdn(self,args): for contact_list in resource_tag: if contact_list.tag == 'ContactList': contact_list_info.extend( \ - get_contact_list_info(contact_list)) + self.get_contact_list_info(contact_list)) if contact_list_info: if resource_name: @@ -355,7 +353,6 @@ def get_resource_contacts(self,args): def get_resource_contacts_by_fqdn(self, args): return self.get_resource_contacts_by_name_and_fqdn(args)[1] - @staticmethod def filter_contacts(args, results): """ Given a set of result contacts, filter them according to given arguments From 0b1e4832a63b8d8de3ff6e01aee7d7c132297779 Mon Sep 17 00:00:00 2001 From: College Date: Mon, 19 Feb 2024 11:17:40 -0600 Subject: [PATCH 011/190] fixing self references from static class removal --- src/topology_utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/topology_utils.py b/src/topology_utils.py index 7172653e3..a37c41d45 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -66,7 +66,7 @@ def get_auth_session(self,args): super().__dict__.update(**session) return True - def update_url_hostname(url, args): + def update_url_hostname(self, url, args): """ Given a URL and an argument object, update the URL's hostname according to args.host and return the newly-formed URL. @@ -77,7 +77,7 @@ def update_url_hostname(url, args): url_list[1] = args.host return urlparse.urlunsplit(url_list) - def get_contact_list_info(contact_list): + def get_contact_list_info(self, contact_list): """ Get contact list info out of contact list @@ -353,7 +353,7 @@ def get_resource_contacts(self,args): def get_resource_contacts_by_fqdn(self, args): return self.get_resource_contacts_by_name_and_fqdn(args)[1] - def filter_contacts(args, results): + def filter_contacts(self, args, results): """ Given a set of result contacts, filter them according to given arguments """ From 04f1a559efe03487fb274b863e5cc401b797cf38 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 27 Feb 2024 15:20:28 -0600 Subject: [PATCH 012/190] Add TAMUCT -> Texas A&M University-Central Texas mapping see #3596 --- mappings/project_institution.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/mappings/project_institution.yaml b/mappings/project_institution.yaml index 6e6a50356..8a4f65dfe 100644 --- a/mappings/project_institution.yaml +++ b/mappings/project_institution.yaml @@ -72,6 +72,7 @@ SUNYUpstateMed: "SUNY Upstate Medical University" SWOSU: "Southwest Oklahoma State University" Syracuse: "Syracuse University" TNTech: "Tennessee Tech University" +TAMUCT: "Texas A&M University-Central Texas" TexasAM: "Texas A&M University" UALR: "University of Arkansas at Little Rock" UCBerkeley: "University of California, Berkeley" From c9269cf167f1f0657fe908e894b43d447a6214ed Mon Sep 17 00:00:00 2001 From: Josh Willis Date: Thu, 29 Feb 2024 13:29:30 -0600 Subject: [PATCH 013/190] Update LIGO.yaml to add LIGO Caltech AP issuer to auth OSDF origins This PR updates the LIGO.yaml VO to add the CIT HTCondor access point issuer (`https://osdf.igwn.org/cit`) to all of our production authenticated OSDF origins, in addition to the two test origins that already supported it. The base path on those test origins has also been updated to include the production Namespace paths, as those now need to agree since the base path is per-issuer. --- virtual-organizations/LIGO.yaml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/virtual-organizations/LIGO.yaml b/virtual-organizations/LIGO.yaml index bc394be48..295d2ab23 100644 --- a/virtual-organizations/LIGO.yaml +++ b/virtual-organizations/LIGO.yaml @@ -92,6 +92,9 @@ DataFederations: - SciTokens: Issuer: https://test.cilogon.org/igwn Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write + - SciTokens: + Issuer: https://osdf.igwn.org/cit + Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write AllowedOrigins: - CIT_LIGO_ORIGIN - LIGO-StashCache-Origin @@ -137,6 +140,9 @@ DataFederations: - SciTokens: Issuer: https://test.cilogon.org/igwn Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write + - SciTokens: + Issuer: https://osdf.igwn.org/cit + Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write AllowedOrigins: - UCL-Virgo-StashCache-Origin AllowedCaches: *ligo-allowed-caches @@ -152,6 +158,9 @@ DataFederations: - SciTokens: Issuer: https://test.cilogon.org/igwn Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write + - SciTokens: + Issuer: https://osdf.igwn.org/cit + Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write AllowedOrigins: - CIT_LIGO_ORIGIN_IFO AllowedCaches: *ligo-allowed-caches @@ -167,6 +176,9 @@ DataFederations: - SciTokens: Issuer: https://test.cilogon.org/igwn Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write + - SciTokens: + Issuer: https://osdf.igwn.org/cit + Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write AllowedOrigins: - KAGRA_OSDF_ORIGIN AllowedCaches: *ligo-allowed-caches @@ -182,6 +194,9 @@ DataFederations: - SciTokens: Issuer: https://test.cilogon.org/igwn Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write + - SciTokens: + Issuer: https://osdf.igwn.org/cit + Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write AllowedOrigins: - CIT_LIGO_ORIGIN_SHARED AllowedCaches: *ligo-allowed-caches @@ -197,6 +212,9 @@ DataFederations: - SciTokens: Issuer: https://test.cilogon.org/igwn Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write + - SciTokens: + Issuer: https://osdf.igwn.org/cit + Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write AllowedOrigins: - CIT_LIGO_ORIGIN_STAGING AllowedCaches: *ligo-allowed-caches @@ -215,7 +233,7 @@ DataFederations: Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write - SciTokens: Issuer: https://osdf.igwn.org/cit - Base Path: /igwn/test,/igwn/test-write + Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write AllowedOrigins: - CIT_LIGO_ORIGIN_TEST AllowedCaches: *ligo-allowed-caches @@ -233,7 +251,7 @@ DataFederations: Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write - SciTokens: Issuer: https://osdf.igwn.org/cit - Base Path: /igwn/test,/igwn/test-write + Base Path: /user/ligo,/igwn,/igwn/cit,/igwn/test,/igwn/test-write AllowedOrigins: - CIT_LIGO_ORIGIN_TEST_WRITE AllowedCaches: *ligo-allowed-caches From ba6186043197d6f28004ac4792681ddb695f36e9 Mon Sep 17 00:00:00 2001 From: Andrew Owen <60940495+aowen-uwmad@users.noreply.github.com> Date: Fri, 1 Mar 2024 09:44:36 -0600 Subject: [PATCH 014/190] Create UWMilwaukee_Yoon Per https://support.opensciencegrid.org/a/tickets/75599 --- projects/UWMilwaukee_Yoon | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 projects/UWMilwaukee_Yoon diff --git a/projects/UWMilwaukee_Yoon b/projects/UWMilwaukee_Yoon new file mode 100644 index 000000000..7442de4ad --- /dev/null +++ b/projects/UWMilwaukee_Yoon @@ -0,0 +1,8 @@ +Department: Department of Economics +Description: Developing new estimation methods for structural economic models. To + evaluate the performance of the new method, Monte Carlo simulations are used to + solve constrained minimization problems. The method is used for estimating empirical + games and other structural models with strategic interactions. +FieldOfScience: Economics +Organization: University of Wisconsin-Milwaukee +PIName: Jangsu Yoon From 5f0096fe5f3995d98d936326ad219011d6a9f186 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Fri, 1 Mar 2024 10:03:12 -0800 Subject: [PATCH 015/190] Add downtime for HOUSTON2_INTERNET2_OSDF_CACHE due to HW issues Add downtime for HOUSTON2_INTERNET2_OSDF_CACHE due to HW issues --- .../I2HoustonInfrastructure_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 topology/Internet2/Internet2Houston/I2HoustonInfrastructure_downtime.yaml diff --git a/topology/Internet2/Internet2Houston/I2HoustonInfrastructure_downtime.yaml b/topology/Internet2/Internet2Houston/I2HoustonInfrastructure_downtime.yaml new file mode 100644 index 000000000..d36876069 --- /dev/null +++ b/topology/Internet2/Internet2Houston/I2HoustonInfrastructure_downtime.yaml @@ -0,0 +1,11 @@ +- Class: UNSCHEDULED + ID: 1743161346 + Description: HW issues + Severity: Outage + StartTime: Mar 01, 2024 20:30 +0000 + EndTime: Mar 08, 2024 20:30 +0000 + CreatedTime: Mar 01, 2024 18:02 +0000 + ResourceName: HOUSTON2_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- From 77776d13917c7e3900640aeb7f809cf8f64d2bbd Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Fri, 1 Mar 2024 12:14:14 -0600 Subject: [PATCH 016/190] Put sc-cache.chtc.wisc.edu in downtime for testing --- .../CHTC/CHTC-OSDF_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml b/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml index ea187a3fc..e1616f506 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml @@ -153,3 +153,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1743168216 + Description: testing... + Severity: Intermittent Outage + StartTime: Mar 01, 2024 18:00 +0000 + EndTime: Mar 04, 2024 21:00 +0000 + CreatedTime: Mar 01, 2024 18:13 +0000 + ResourceName: CHTC_STASHCACHE_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- From 6b0f20930a5f0429ff10413407525125b9168b80 Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Mon, 4 Mar 2024 11:02:31 -0600 Subject: [PATCH 017/190] Update UWMadison_Payseur.yaml --- projects/UWMadison_Payseur.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/UWMadison_Payseur.yaml b/projects/UWMadison_Payseur.yaml index dd02dbaed..4ad3a2032 100644 --- a/projects/UWMadison_Payseur.yaml +++ b/projects/UWMadison_Payseur.yaml @@ -1,5 +1,5 @@ Department: Genetics -Description: Extending access to OSPool long-term following OSG User School +Description: Work on understanding the origin of species and the evolution of recombination FieldOfScience: Genomics Organization: University of Wisconsin-Madison PIName: Bret Payseur From 6842ca3604c07f2f8d3d9a64dc7051ad3d5abb06 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 4 Mar 2024 10:38:19 -0800 Subject: [PATCH 018/190] Adding S3 SDSC origin Adding S3 SDSC origin --- .../SDSC-NRP.yaml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml index 4e7c7115c..28d17ad8f 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml @@ -50,3 +50,27 @@ Resources: Description: SDSC NRP OSDF Cache AllowedVOs: - ANY + +SDSC_NRP_OSDF_S3_CACHE: + Active: true + Description: SDSC NRP OSDF S3 Cache + ID: 1355 + ContactLists: + Administrative Contact: + Primary: + Name: Fabio Andrijauskas + ID: OSG1000162 + Secondary: + Name: Diego Davila + ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f + Security Contact: + Primary: + Name: Fabio Andrijauskas + ID: OSG1000162 + DN: CN=sdsc-origin.nationalresearchplatform.org + FQDN: sdsc-cache.nationalresearchplatform.org + Services: + XRootD cache server: + Description: SDSC NRP OSDF Cache + AllowedVOs: + - ANY From de5d2cf1e5e6d49a5263865c99bac143e7757f8d Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 4 Mar 2024 13:10:31 -0800 Subject: [PATCH 019/190] Update topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml Co-authored-by: Matyas Selmeci --- .../San Diego Supercomputer Center/SDSC-NRP.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml index 28d17ad8f..2ac6ae4a2 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml @@ -51,7 +51,7 @@ Resources: AllowedVOs: - ANY -SDSC_NRP_OSDF_S3_CACHE: +SDSC_NRP_OSDF_S3_ORIGIN: Active: true Description: SDSC NRP OSDF S3 Cache ID: 1355 From d5bd14acd0c6cb0f8c114d9697a5dab35042a155 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 4 Mar 2024 13:10:38 -0800 Subject: [PATCH 020/190] Update topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml Co-authored-by: Matyas Selmeci --- .../San Diego Supercomputer Center/SDSC-NRP.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml index 2ac6ae4a2..7fb40623d 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml @@ -53,7 +53,7 @@ Resources: SDSC_NRP_OSDF_S3_ORIGIN: Active: true - Description: SDSC NRP OSDF S3 Cache + Description: SDSC NRP OSDF S3 Origin ID: 1355 ContactLists: Administrative Contact: From da36c6a078675dee152bd4cd146138bd5c1d14c7 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 4 Mar 2024 13:10:44 -0800 Subject: [PATCH 021/190] Update topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml Co-authored-by: Matyas Selmeci --- .../San Diego Supercomputer Center/SDSC-NRP.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml index 7fb40623d..7afb4ad8d 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml @@ -54,7 +54,6 @@ Resources: SDSC_NRP_OSDF_S3_ORIGIN: Active: true Description: SDSC NRP OSDF S3 Origin - ID: 1355 ContactLists: Administrative Contact: Primary: From 25e3cd2d7c03b1d4ac3f291d6e8e7abbe4898c3a Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 4 Mar 2024 13:10:50 -0800 Subject: [PATCH 022/190] Update topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml Co-authored-by: Matyas Selmeci --- .../San Diego Supercomputer Center/SDSC-NRP.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml index 7afb4ad8d..f64bf8151 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml @@ -67,7 +67,7 @@ SDSC_NRP_OSDF_S3_ORIGIN: Name: Fabio Andrijauskas ID: OSG1000162 DN: CN=sdsc-origin.nationalresearchplatform.org - FQDN: sdsc-cache.nationalresearchplatform.org + FQDN: sdsc-origin.nationalresearchplatform.org Services: XRootD cache server: Description: SDSC NRP OSDF Cache From 0f572cc0c10147480cd7b2eeaae894df587d1a0a Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 4 Mar 2024 13:10:55 -0800 Subject: [PATCH 023/190] Update topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml Co-authored-by: Matyas Selmeci --- .../San Diego Supercomputer Center/SDSC-NRP.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml index f64bf8151..3b35597b9 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml @@ -69,7 +69,7 @@ SDSC_NRP_OSDF_S3_ORIGIN: DN: CN=sdsc-origin.nationalresearchplatform.org FQDN: sdsc-origin.nationalresearchplatform.org Services: - XRootD cache server: + XRootD origin server: Description: SDSC NRP OSDF Cache AllowedVOs: - ANY From 02f1337d91b5525ff5691bf4ee0c3b33b315074e Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 4 Mar 2024 13:11:01 -0800 Subject: [PATCH 024/190] Update topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml Co-authored-by: Matyas Selmeci --- .../San Diego Supercomputer Center/SDSC-NRP.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml index 3b35597b9..caeb17a82 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml @@ -70,6 +70,6 @@ SDSC_NRP_OSDF_S3_ORIGIN: FQDN: sdsc-origin.nationalresearchplatform.org Services: XRootD origin server: - Description: SDSC NRP OSDF Cache + Description: SDSC NRP OSDF Origin AllowedVOs: - ANY From fae5ffec7baf4efa2c6d1656391285d391976a4c Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 4 Mar 2024 13:12:30 -0800 Subject: [PATCH 025/190] adding s3 namespace adding s3 namespace --- virtual-organizations/OSG.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/virtual-organizations/OSG.yaml b/virtual-organizations/OSG.yaml index 3ddeb3467..7773f390f 100644 --- a/virtual-organizations/OSG.yaml +++ b/virtual-organizations/OSG.yaml @@ -173,6 +173,14 @@ DataFederations: Writeback: https://s3-us-west-1.osgdev.chtc.io:1095 DirList: https://s3-us-west-1.osgdev.chtc.io:1095 + - Path: /osn-sdsc/us-west-1/bp3d-pelican + Authorizations: + - PUBLIC + AllowedOrigins: + - SDSC_NRP_OSDF_S3_ORIGIN + AllowedCaches: + - ANY + - Path: /osdftest Authorizations: - PUBLIC From f4e625353af3d4cfde343544817868f5f89757c1 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Mon, 4 Mar 2024 15:39:18 -0600 Subject: [PATCH 026/190] Update SDSC-NRP.yaml --- .../San Diego Supercomputer Center/SDSC-NRP.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml index caeb17a82..dde9f4423 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml @@ -51,7 +51,7 @@ Resources: AllowedVOs: - ANY -SDSC_NRP_OSDF_S3_ORIGIN: + SDSC_NRP_OSDF_S3_ORIGIN: Active: true Description: SDSC NRP OSDF S3 Origin ContactLists: From b73c628a434032f9ea83ab1b200651b1c1bf6834 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 4 Mar 2024 14:02:02 -0800 Subject: [PATCH 027/190] changing host name sdsc-s3-origin.nationalresearchplatform.org --- .../San Diego Supercomputer Center/SDSC-NRP.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml index dde9f4423..ace5a8c29 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml @@ -66,8 +66,8 @@ Resources: Primary: Name: Fabio Andrijauskas ID: OSG1000162 - DN: CN=sdsc-origin.nationalresearchplatform.org - FQDN: sdsc-origin.nationalresearchplatform.org + DN: CN=sdsc-s3-origin.nationalresearchplatform.org + FQDN: sdsc-s3-origin.nationalresearchplatform.org Services: XRootD origin server: Description: SDSC NRP OSDF Origin From 75f24235662a01890fa465da1630c898aa84bb73 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 4 Mar 2024 15:44:08 -0800 Subject: [PATCH 028/190] Add downtime for JACKSONVILLE_INTERNET2_OSDF_CACHE due to HW issue Add downtime for JACKSONVILLE_INTERNET2_OSDF_CACHE due to HW issue --- .../I2JacksonvilleInfrastructure_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/Internet2/Internet2Jacksonville/I2JacksonvilleInfrastructure_downtime.yaml b/topology/Internet2/Internet2Jacksonville/I2JacksonvilleInfrastructure_downtime.yaml index 7e7cb8c2d..05f472f50 100644 --- a/topology/Internet2/Internet2Jacksonville/I2JacksonvilleInfrastructure_downtime.yaml +++ b/topology/Internet2/Internet2Jacksonville/I2JacksonvilleInfrastructure_downtime.yaml @@ -9,3 +9,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1745957949 + Description: HW Issues + Severity: Severe + StartTime: Mar 04, 2024 20:30 +0000 + EndTime: Mar 15, 2024 20:30 +0000 + CreatedTime: Mar 04, 2024 23:43 +0000 + ResourceName: JACKSONVILLE_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- From 712a93c9ff7b7cb71785638e8eadaef2c5795867 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 5 Mar 2024 08:46:58 -0600 Subject: [PATCH 029/190] Override port of SDSC S3 origin --- .../San Diego Supercomputer Center/SDSC-NRP.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml index ace5a8c29..938a9d318 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml @@ -71,5 +71,8 @@ Resources: Services: XRootD origin server: Description: SDSC NRP OSDF Origin + Details: + endpoint_override: sdsc-s3-origin.nationalresearchplatform.org:50123 + auth_endpoint_override: sdsc-s3-origin.nationalresearchplatform.org:50123 AllowedVOs: - ANY From e58d31cb570db602d1827876999162092a9df1bb Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 5 Mar 2024 12:34:12 -0800 Subject: [PATCH 030/190] Add downtime for SU_STASHCACHE_CACHE due to Hw issue Add downtime for SU_STASHCACHE_CACHE due to Hw issue --- .../SyracuseCachingInfrastructure_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/Syracuse University/SU ITS/SyracuseCachingInfrastructure_downtime.yaml b/topology/Syracuse University/SU ITS/SyracuseCachingInfrastructure_downtime.yaml index da3d97cf8..5cc4374e7 100644 --- a/topology/Syracuse University/SU ITS/SyracuseCachingInfrastructure_downtime.yaml +++ b/topology/Syracuse University/SU ITS/SyracuseCachingInfrastructure_downtime.yaml @@ -9,3 +9,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1746707966 + Description: 'HW issue' + Severity: Outage + StartTime: Mar 05, 2024 20:30 +0000 + EndTime: Mar 15, 2024 20:30 +0000 + CreatedTime: Mar 05, 2024 20:33 +0000 + ResourceName: SU_STASHCACHE_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- From 638c018d4342a841d669b10e26ced3aefd46ecda Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 5 Mar 2024 12:37:15 -0800 Subject: [PATCH 031/190] Add downtime for ComputeCanada-Cedar-Cache due to hw issue Add downtime for ComputeCanada-Cedar-Cache due to hw issue --- .../ComputeCanada-Cedar_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/Compute Canada/ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml b/topology/Compute Canada/ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml index ce52d0831..7454b3c54 100644 --- a/topology/Compute Canada/ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml +++ b/topology/Compute Canada/ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml @@ -20,3 +20,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1746709980 + Description: offline - check with the admin + Severity: Outage + StartTime: Mar 05, 2024 21:30 +0000 + EndTime: Mar 15, 2024 21:30 +0000 + CreatedTime: Mar 05, 2024 20:36 +0000 + ResourceName: ComputeCanada-Cedar-Cache + Services: + - XRootD cache server +# --------------------------------------------------------- From afc240cebe6a30a4eae38e4a307a4f98f422d013 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 5 Mar 2024 15:23:57 -0600 Subject: [PATCH 032/190] rundev: fix shellcheck complaints; ask to restart on control-C; fix handling SIGKILL --- src/rundev | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/rundev b/src/rundev index 3e61cbd21..3c67cd1be 100755 --- a/src/rundev +++ b/src/rundev @@ -1,11 +1,11 @@ #!/bin/bash ask_yn () { - echo "$@" - while read; do + echo "$@" >&2 + while read -r; do case $REPLY in [Yy]*) return 0;; [Nn]*) return 1;; - *) echo "Enter yes or no";; + *) echo "Enter yes or no" >&2;; esac done return 2 ## EOF @@ -13,15 +13,18 @@ ask_yn () { export FLASK_ENV=development export FLASK_DEBUG=True -cd "$(dirname "$0")" +cd "$(dirname "$0")" || exit 1 while true; do python3 app.py; ret=$? if [[ $ret -eq 0 ]]; then exit elif [[ $ret -eq 130 ]]; then # control-C - exit 130 - elif [[ $ret -eq 136 ]]; then # kill -9 - exit 136 + if ! ask_yn "Interrupted. Restart (y/n)? "; then + exit 130 + fi + elif [[ $ret -eq 137 ]]; then # kill -9 + echo >&2 "Killed!" + exit 137 else if ! ask_yn "Exited with $ret. Retry (y/n)? "; then exit $ret From d53db8629b8ee4ba98b5a1eab7fd053003a0fa13 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 5 Mar 2024 14:59:28 -0600 Subject: [PATCH 033/190] Revert "Merge pull request #2900 from opensciencegrid/revert-2899-prometheus_client" This reverts commit fc812d0beb702dfcc1e305eff782a5fdcd29fdf1, reversing changes made to a49de09009c9dbdeff3c1c83838a941e268717d1. Conflicts fixed: requirements-apache.txt requirements-rootless.txt src/app.py src/webapp/models.py --- requirements-rootless.txt | 1 + src/app.py | 8 ++ src/webapp/models.py | 149 +++++++++++++++++++++----------------- 3 files changed, 90 insertions(+), 68 deletions(-) diff --git a/requirements-rootless.txt b/requirements-rootless.txt index f6a6a8232..93cdb97f6 100644 --- a/requirements-rootless.txt +++ b/requirements-rootless.txt @@ -19,6 +19,7 @@ itsdangerous~=2.1.2 Jinja2~=3.1.2 ldap3~=2.9.1 MarkupSafe~=2.1.2 +prometheus-client>=0.15.0,<0.16 pyasn1~=0.5.0 python-dateutil~=2.8.2 python-gnupg~=0.5.0 diff --git a/src/app.py b/src/app.py index 0d780ea20..e9d393f81 100755 --- a/src/app.py +++ b/src/app.py @@ -5,6 +5,8 @@ import flask import flask.logging from flask import Flask, Response, make_response, request, render_template, redirect, url_for, session +from werkzeug.middleware.dispatcher import DispatcherMiddleware +from prometheus_client import make_wsgi_app from io import StringIO import logging import os @@ -1079,6 +1081,12 @@ def _get_authorized(): return default_authorized +# Enable prometheus integration with the topology webapp +app.wsgi_app = DispatcherMiddleware(app.wsgi_app, { + '/metrics': make_wsgi_app() +}) + + if __name__ == '__main__': if "--auth" in sys.argv[1:]: default_authorized = True diff --git a/src/webapp/models.py b/src/webapp/models.py index d8748ee74..3ea463d99 100644 --- a/src/webapp/models.py +++ b/src/webapp/models.py @@ -5,6 +5,7 @@ from typing import Dict, Set, List, Optional import yaml +from prometheus_client import Summary from webapp import common, contacts_reader, ldap_data, mappings, project_reader, rg_reader, vo_reader from webapp.common import readfile @@ -15,6 +16,11 @@ log = logging.getLogger(__name__) +topology_update_summary = Summary('topology_update_seconds', 'Time spent updating the topology repo data') +contact_update_summary = Summary('contact_update_seconds', 'Time spent updating the contact repo data') +comanage_update_summary = Summary('comanage_update_seconds', 'Time spent updating the comanage LDAP data') +ligo_update_summary = Summary('ligo_update_seconds', 'Time spent updating the LIGO LDAP data') + class CachedData: def __init__(self, data=None, timestamp=0, force_update=True, cache_lifetime=60*15, @@ -153,17 +159,18 @@ def get_contact_db_data(self) -> Optional[ContactsData]: data = contacts_reader.get_contacts_data(None) self.contacts_data.update(data) elif self.contacts_data.should_update(): - ok = self._update_contacts_repo() - if ok: - try: - self.contacts_data.update(contacts_reader.get_contacts_data(self.contacts_file)) - except Exception: - if self.strict: - raise - log.exception("Failed to update contacts data") + with contact_update_summary.time(): + ok = self._update_contacts_repo() + if ok: + try: + self.contacts_data.update(contacts_reader.get_contacts_data(self.contacts_file)) + except Exception: + if self.strict: + raise + log.exception("Failed to update contacts data") + self.contacts_data.try_again() + else: self.contacts_data.try_again() - else: - self.contacts_data.try_again() return self.contacts_data.data @@ -179,15 +186,16 @@ def get_comanage_data(self) -> Optional[ContactsData]: data = contacts_reader.get_contacts_data(None) self.comanage_data.update(data) elif self.comanage_data.should_update(): - try: - idmap = self.get_cilogon_ldap_id_map() - data = ldap_data.cilogon_id_map_to_yaml_data(idmap) - self.comanage_data.update(ContactsData(data)) - except Exception: - if self.strict: - raise - log.exception("Failed to update comanage data") - self.comanage_data.try_again() + with comanage_update_summary.time(): + try: + idmap = self.get_cilogon_ldap_id_map() + data = ldap_data.cilogon_id_map_to_yaml_data(idmap) + self.comanage_data.update(ContactsData(data)) + except Exception: + if self.strict: + raise + log.exception("Failed to update comanage data") + self.comanage_data.try_again() return self.comanage_data.data @@ -227,15 +235,16 @@ def get_ligo_dn_list(self) -> Optional[List[str]]: "getting empty list") return [] elif self.ligo_dn_list.should_update(): - try: - ligo_ldap_pass = readfile(self.ligo_ldap_passfile, log) - new_dn_list = ldap_data.get_ligo_ldap_dn_list(self.ligo_ldap_url, self.ligo_ldap_user, ligo_ldap_pass) - self.ligo_dn_list.update(new_dn_list) - except Exception: - if self.strict: - raise - log.exception("Failed to update LIGO data") - self.ligo_dn_list.try_again() + with ligo_update_summary.time(): + try: + ligo_ldap_pass = readfile(self.ligo_ldap_passfile, log) + new_dn_list = ldap_data.get_ligo_ldap_dn_list(self.ligo_ldap_url, self.ligo_ldap_user, ligo_ldap_pass) + self.ligo_dn_list.update(new_dn_list) + except Exception: + if self.strict: + raise + log.exception("Failed to update LIGO data") + self.ligo_dn_list.try_again() return self.ligo_dn_list.data @@ -261,17 +270,18 @@ def get_topology(self) -> Optional[Topology]: May return None if we fail to get the data for the first time. """ if self.topology.should_update(): - ok = self._update_topology_repo() - if ok: - try: - self.topology.update(rg_reader.get_topology(self.topology_dir, self.get_contacts_data(), strict=self.strict)) - except Exception: - if self.strict: - raise - log.exception("Failed to update topology") + with topology_update_summary.time(): + ok = self._update_topology_repo() + if ok: + try: + self.topology.update(rg_reader.get_topology(self.topology_dir, self.get_contacts_data(), strict=self.strict)) + except Exception: + if self.strict: + raise + log.exception("Failed to update topology") + self.topology.try_again() + else: self.topology.try_again() - else: - self.topology.try_again() return self.topology.data @@ -281,17 +291,18 @@ def get_vos_data(self) -> Optional[VOsData]: May return None if we fail to get the data for the first time. """ if self.vos_data.should_update(): - ok = self._update_topology_repo() - if ok: - try: - self.vos_data.update(vo_reader.get_vos_data(self.vos_dir, self.get_contacts_data(), strict=self.strict)) - except Exception: - if self.strict: - raise - log.exception("Failed to update VOs") + with topology_update_summary.time(): + ok = self._update_topology_repo() + if ok: + try: + self.vos_data.update(vo_reader.get_vos_data(self.vos_dir, self.get_contacts_data(), strict=self.strict)) + except Exception: + if self.strict: + raise + log.exception("Failed to update VOs") + self.vos_data.try_again() + else: self.vos_data.try_again() - else: - self.vos_data.try_again() return self.vos_data.data @@ -301,17 +312,18 @@ def get_projects(self) -> Optional[Dict]: May return None if we fail to get the data for the first time. """ if self.projects.should_update(): - ok = self._update_topology_repo() - if ok: - try: - self.projects.update(project_reader.get_projects(self.projects_dir, strict=self.strict)) - except Exception: - if self.strict: - raise - log.exception("Failed to update projects") + with topology_update_summary.time(): + ok = self._update_topology_repo() + if ok: + try: + self.projects.update(project_reader.get_projects(self.projects_dir, strict=self.strict)) + except Exception: + if self.strict: + raise + log.exception("Failed to update projects") + self.projects.try_again() + else: self.projects.try_again() - else: - self.projects.try_again() return self.projects.data @@ -323,17 +335,18 @@ def get_mappings(self, strict=None) -> Optional[mappings.Mappings]: if strict is None: strict = self.strict if self.mappings.should_update(): - ok = self._update_topology_repo() - if ok: - try: - self.mappings.update(mappings.get_mappings(indir=self.mappings_dir, strict=strict)) - except Exception: - if strict: - raise - log.exception("Failed to update mappings") + with topology_update_summary.time(): + ok = self._update_topology_repo() + if ok: + try: + self.mappings.update(mappings.get_mappings(indir=self.mappings_dir, strict=strict)) + except Exception: + if self.strict: + raise + log.exception("Failed to update mappings") + self.mappings.try_again() + else: self.mappings.try_again() - else: - self.mappings.try_again() return self.mappings.data From e5fcb22fdff787dfd76cae283cbc833be7b4a16d Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 5 Mar 2024 15:07:14 -0600 Subject: [PATCH 034/190] Upgrade prometheus-client --- requirements-rootless.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-rootless.txt b/requirements-rootless.txt index 93cdb97f6..b94291383 100644 --- a/requirements-rootless.txt +++ b/requirements-rootless.txt @@ -19,7 +19,7 @@ itsdangerous~=2.1.2 Jinja2~=3.1.2 ldap3~=2.9.1 MarkupSafe~=2.1.2 -prometheus-client>=0.15.0,<0.16 +prometheus-client~=0.20.0 pyasn1~=0.5.0 python-dateutil~=2.8.2 python-gnupg~=0.5.0 From 7c00665afc1ecaf2393ffb6221440f34ea5243cc Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 5 Mar 2024 15:17:06 -0600 Subject: [PATCH 035/190] Add dummy prometheus_client.Summary class if the real one is not available --- src/webapp/models.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/webapp/models.py b/src/webapp/models.py index 3ea463d99..cc8d13429 100644 --- a/src/webapp/models.py +++ b/src/webapp/models.py @@ -1,3 +1,4 @@ +import contextlib import datetime import logging import os @@ -5,7 +6,22 @@ from typing import Dict, Set, List, Optional import yaml -from prometheus_client import Summary +try: + from prometheus_client import Summary +except ImportError: + class Summary: + """A dummy prometheus_client.Summary class""" + + def __init__(self, name: str, documentation: str): + _ = name + _ = documentation + + @contextlib.contextmanager + def time(self): + pass + yield + pass + from webapp import common, contacts_reader, ldap_data, mappings, project_reader, rg_reader, vo_reader from webapp.common import readfile From 34db3229151390b5caf7896b47ec55ec5033ef5b Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 5 Mar 2024 15:31:50 -0600 Subject: [PATCH 036/190] Handle prometheus-client missing in webapp, too --- src/app.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/app.py b/src/app.py index e9d393f81..288c14f2d 100755 --- a/src/app.py +++ b/src/app.py @@ -5,8 +5,6 @@ import flask import flask.logging from flask import Flask, Response, make_response, request, render_template, redirect, url_for, session -from werkzeug.middleware.dispatcher import DispatcherMiddleware -from prometheus_client import make_wsgi_app from io import StringIO import logging import os @@ -1081,10 +1079,16 @@ def _get_authorized(): return default_authorized -# Enable prometheus integration with the topology webapp -app.wsgi_app = DispatcherMiddleware(app.wsgi_app, { - '/metrics': make_wsgi_app() -}) +try: + from werkzeug.middleware.dispatcher import DispatcherMiddleware + from prometheus_client import make_wsgi_app + # Enable prometheus integration with the topology webapp + app.wsgi_app = DispatcherMiddleware(app.wsgi_app, { + '/metrics': make_wsgi_app() + }) +except ImportError: + print("*** /metrics endpoint unavailable: prometheus-client missing", + file=sys.stderr) if __name__ == '__main__': From 1bcf095623d7c15ff376a6aa0fb8b25698d074e1 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 5 Mar 2024 16:06:25 -0600 Subject: [PATCH 037/190] Run one WSGI process per Topology container (we will use Kubernetes replicas for load balancing) This should avoid conflicts from concurrent git pulls, and give us better metrics (since we'll have one `/metrics` endpoint per pod). --- docker/apache.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/apache.conf b/docker/apache.conf index a68ab9ba3..4c9f5b566 100644 --- a/docker/apache.conf +++ b/docker/apache.conf @@ -5,7 +5,7 @@ LoadModule wsgi_module /usr/local/lib64/python3.9/site-packages/mod_wsgi/server/ WSGIPythonPath /app # Run apps in separate processes to stop yaml.CSafeLoader import-time error -WSGIDaemonProcess topology home=/app processes=5 +WSGIDaemonProcess topology home=/app WSGIDaemonProcess topomerge home=/app # vhost for topology, SSL terminated here (for gridsite auth) From b0f381e1e0d83fbbb1680f73d92691ebdfc0bd1e Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 5 Mar 2024 14:31:50 -0800 Subject: [PATCH 038/190] adding new origin adding new origin --- .../Nebraska-Lincoln/UNLNRPOrigin.yaml | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml index a57222c7d..9e7734084 100644 --- a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml +++ b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml @@ -31,3 +31,32 @@ Resources: AllowedVOs: - ANY + NEBRASKA_NRP_HCC_OSDF_ORIGIN: + Active: True + Description: Nebraska NRP HCC OSDF Origin + ID: 1488 + ContactLists: + Administrative Contact: + Primary: + Name: Fabio Andrijauskas + ID: OSG1000162 + Secondary: + Name: John Thiltges + ID: OSG1000004 + Tertiary: + Name: Derek Weitzel + ID: OSG1000006 + Security Contact: + Primary: + Name: Garhan Attebury + ID: e86d60dc841731aebfd879d5883d66ebab20cbd2 + FQDN: hcc-nrdstor-osdf.unl.edu + DN: /CN=hcc-nrdstor-osdf.unl.edu + Services: + XRootD origin server: + # Description is a brief description of the service + Description: Nebraska NRP HCC OSDF Origin + AllowedVOs: + - ANY + + From 4387ca7e0b65ea4bb0f70fc93344a9627fa648db Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 5 Mar 2024 18:14:35 -0600 Subject: [PATCH 039/190] Update UNLNRPOrigin.yaml --- .../Nebraska-Lincoln/UNLNRPOrigin.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml index 9e7734084..f2b8bec0d 100644 --- a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml +++ b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml @@ -31,10 +31,9 @@ Resources: AllowedVOs: - ANY - NEBRASKA_NRP_HCC_OSDF_ORIGIN: + NEBRASKA_NRP_HCC_OSDF_ORIGIN: Active: True Description: Nebraska NRP HCC OSDF Origin - ID: 1488 ContactLists: Administrative Contact: Primary: @@ -58,5 +57,3 @@ Resources: Description: Nebraska NRP HCC OSDF Origin AllowedVOs: - ANY - - From f734a52232d20e20f7d0fa4006ac8a6eed16d5ab Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 5 Mar 2024 16:34:52 -0800 Subject: [PATCH 040/190] adding /nrdstor/protected adding /nrdstor/protected --- virtual-organizations/OSG.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/virtual-organizations/OSG.yaml b/virtual-organizations/OSG.yaml index 7773f390f..050156fa5 100644 --- a/virtual-organizations/OSG.yaml +++ b/virtual-organizations/OSG.yaml @@ -181,6 +181,17 @@ DataFederations: AllowedCaches: - ANY + - Path: /nrdstor/protected + Authorizations: + - SciTokens: https://t.nationalresearchplatform.org/nrdstor + Issuer: https://t.nationalresearchplatform.org + Base Path: /nrdstor/protected + Map Subject: True + AllowedOrigins: + - SDSC_NRP_OSDF_S3_ORIGIN + AllowedCaches: + - ANY + - Path: /osdftest Authorizations: - PUBLIC From 1dc62dfa27e8f6a29325d2ddd6fda36c0bf10042 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 5 Mar 2024 18:48:15 -0600 Subject: [PATCH 041/190] Revert "Run one WSGI process per Topology container" --- docker/apache.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/apache.conf b/docker/apache.conf index 4c9f5b566..a68ab9ba3 100644 --- a/docker/apache.conf +++ b/docker/apache.conf @@ -5,7 +5,7 @@ LoadModule wsgi_module /usr/local/lib64/python3.9/site-packages/mod_wsgi/server/ WSGIPythonPath /app # Run apps in separate processes to stop yaml.CSafeLoader import-time error -WSGIDaemonProcess topology home=/app +WSGIDaemonProcess topology home=/app processes=5 WSGIDaemonProcess topomerge home=/app # vhost for topology, SSL terminated here (for gridsite auth) From 26e4abcd41ad521ab80bb73bf13da90a3908c8dd Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 5 Mar 2024 19:03:02 -0600 Subject: [PATCH 042/190] Update virtual-organizations/OSG.yaml --- virtual-organizations/OSG.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtual-organizations/OSG.yaml b/virtual-organizations/OSG.yaml index 050156fa5..63f733fb7 100644 --- a/virtual-organizations/OSG.yaml +++ b/virtual-organizations/OSG.yaml @@ -183,7 +183,7 @@ DataFederations: - Path: /nrdstor/protected Authorizations: - - SciTokens: https://t.nationalresearchplatform.org/nrdstor + - SciTokens: Issuer: https://t.nationalresearchplatform.org Base Path: /nrdstor/protected Map Subject: True From 13a3b134204182599ba57ebf28444f10f30b6d3f Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 5 Mar 2024 17:16:26 -0800 Subject: [PATCH 043/190] Fixing origin name Fixing origin name --- virtual-organizations/OSG.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtual-organizations/OSG.yaml b/virtual-organizations/OSG.yaml index 63f733fb7..799f9028b 100644 --- a/virtual-organizations/OSG.yaml +++ b/virtual-organizations/OSG.yaml @@ -188,7 +188,7 @@ DataFederations: Base Path: /nrdstor/protected Map Subject: True AllowedOrigins: - - SDSC_NRP_OSDF_S3_ORIGIN + - NEBRASKA_NRP_HCC_OSDF_ORIGIN AllowedCaches: - ANY From 3bfafc6a0fbcc3a06b49bdbe32630e11ec105dc3 Mon Sep 17 00:00:00 2001 From: jlstephen Date: Wed, 6 Mar 2024 11:56:09 -0600 Subject: [PATCH 044/190] Create UChicago_OSGConnect_downtime.yaml Add downtime for ap22.uc.osg-htc.org for EL9 rebuild --- .../UChicago/UChicago_OSGConnect_downtime.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 topology/University of Chicago/UChicago/UChicago_OSGConnect_downtime.yaml diff --git a/topology/University of Chicago/UChicago/UChicago_OSGConnect_downtime.yaml b/topology/University of Chicago/UChicago/UChicago_OSGConnect_downtime.yaml new file mode 100644 index 000000000..b18a3dc59 --- /dev/null +++ b/topology/University of Chicago/UChicago/UChicago_OSGConnect_downtime.yaml @@ -0,0 +1,12 @@ +- Class: SCHEDULED + ID: 1747477241 + Description: Rebuilding testbed AP as EL9 + Severity: Outage + StartTime: Mar 04, 2024 15:00 +0000 + EndTime: Mar 15, 2024 23:00 +0000 + CreatedTime: Mar 06, 2024 17:55 +0000 + ResourceName: UChicago_OSGConnect_ap22 + Services: + - Submit Node + - XRootD origin server +# --------------------------------------------------------- From 97badf983c4197878980f49aea7e4878dfc237f9 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 6 Mar 2024 14:06:34 -0800 Subject: [PATCH 045/190] removing downtime removing downtime --- .../ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/Compute Canada/ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml b/topology/Compute Canada/ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml index 7454b3c54..8e53972ba 100644 --- a/topology/Compute Canada/ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml +++ b/topology/Compute Canada/ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml @@ -25,7 +25,7 @@ Description: offline - check with the admin Severity: Outage StartTime: Mar 05, 2024 21:30 +0000 - EndTime: Mar 15, 2024 21:30 +0000 + EndTime: Mar 06, 2024 21:30 +0000 CreatedTime: Mar 05, 2024 20:36 +0000 ResourceName: ComputeCanada-Cedar-Cache Services: From 2bacfc27053fff72c1f103b2f21b6509b635da9b Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Thu, 7 Mar 2024 11:17:26 -0600 Subject: [PATCH 046/190] Create UALR_Goodarzi.yaml --- projects/UALR_Goodarzi.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 projects/UALR_Goodarzi.yaml diff --git a/projects/UALR_Goodarzi.yaml b/projects/UALR_Goodarzi.yaml new file mode 100644 index 000000000..2d58776bb --- /dev/null +++ b/projects/UALR_Goodarzi.yaml @@ -0,0 +1,9 @@ +Description: > + focus on drug discovery for infection and cancer, leveraging computational methods. + Specifically, I utilize computation for analyzing protein-protein interactions, protein-ligand interactions, and multivariate analysis. + This approach aids in identifying potential drug targets and understanding molecular mechanisms. + Overall, my work integrates computational tools to advance drug discovery efforts against infection and cancer. +Department: Chemistry +FieldOfScience: Biochemistry +Organization: University of Arkansas at Little Rock +PIName: Mohammad Goodarzi From 989285e7362d9aff4e1a66dff0ad8fe8cd9b32e2 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Thu, 7 Mar 2024 13:12:53 -0600 Subject: [PATCH 047/190] More downtime for sc-cache keep this down for a while to decrease load (and avoid monitoring alerts) --- .../CHTC/CHTC-OSDF_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml b/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml index e1616f506..334ca3690 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml @@ -164,3 +164,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1748387171 + Description: keep this down for a while + Severity: Intermittent Outage + StartTime: Mar 07, 2024 19:11 +0000 + EndTime: Apr 09, 2024 19:11 +0000 + CreatedTime: Mar 07, 2024 19:11 +0000 + ResourceName: CHTC_STASHCACHE_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- From e4eaeca3b27fa818cf4ab5b1166a9497f84eff9c Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 7 Mar 2024 11:47:13 -0800 Subject: [PATCH 048/190] adding /knightlab namespace adding /knightlab namespace --- virtual-organizations/NRP.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/virtual-organizations/NRP.yaml b/virtual-organizations/NRP.yaml index 25c9de7d2..bcde06a3c 100644 --- a/virtual-organizations/NRP.yaml +++ b/virtual-organizations/NRP.yaml @@ -63,3 +63,20 @@ DataFederations: - SDSC_NRP_OSDF_ORIGIN AllowedCaches: - ANY + - Path: /knightlab + Authorizations: + - PUBLIC + AllowedOrigins: + - SDSC_NRP_OSDF_ORIGIN + AllowedCaches: + - ANY + - Path: /knightlab/mirror/ncbi-genbank-refseq + Authorizations: + - SciTokens: + Issuer: https://token.nationalresearchplatform.org/knightlab + Base Path: /knightlab/mirror/ncbi-genbank-refseq + Map Subject: False + AllowedOrigins: + - SDSC_NRP_OSDF_ORIGIN + AllowedCaches: + - ANY From fbf23448823415d3358bd2d28e46207918486563 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Mon, 26 Feb 2024 17:22:17 -0600 Subject: [PATCH 049/190] Remove bad merges --- src/topology_utils.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/topology_utils.py b/src/topology_utils.py index a37c41d45..34e7cbe43 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -56,7 +56,7 @@ def get_auth_session(self,args): session["cert_file"] = cert else: raise InvalidPathError("Error: could not find cert at %s" % cert) - + if os.path.exists(key): session["key_file"] = key else: @@ -372,14 +372,15 @@ def filter_contacts(self, args, results): args.fqdn_filter not in fqdn: del results[fqdn] - if args.contact_type != 'all': + if 'all' not in args.contact_type: # filter out undesired contact types for name in list(results): contact_list = [] for contact in results[name]: contact_type = contact['ContactType'] - if contact_type.startswith(args.contact_type): - contact_list.append(contact) + for args_contact_type in args.contact_type: + if contact_type.startswith(args_contact_type): + contact_list.append(contact) if contact_list == []: del results[name] else: From 7a6b772c2e73d5ccb511837de257795dfdd3146d Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Mon, 26 Feb 2024 17:38:52 -0600 Subject: [PATCH 050/190] Move static methods to module level to retain API consistency --- bin/osg-notify | 4 +- src/topology_utils.py | 234 +++++++++++++++++++++--------------------- 2 files changed, 121 insertions(+), 117 deletions(-) diff --git a/bin/osg-notify b/bin/osg-notify index c326f4dd9..d6aa0f19b 100755 --- a/bin/osg-notify +++ b/bin/osg-notify @@ -191,7 +191,7 @@ def main(): exit(1) else: print(exc) - results = pm.filter_contacts(args, results) + results = topology_utils.filter_contacts(args, results) emails = set() for name in results.keys(): for contact in results[name]: @@ -214,7 +214,7 @@ def main(): exit("Too many incorrect password attempts, exiting") else: print(exc) - results = pm.filter_contacts(args, results) + results = topology_utils.filter_contacts(args, results) emails = set() for name in results.keys(): for contact in results[name]: diff --git a/src/topology_utils.py b/src/topology_utils.py index 34e7cbe43..5fe99c42f 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -25,6 +25,122 @@ class InvalidPathError(AuthError): class IncorrectPasswordError(AuthError): pass + +def update_url_hostname(url, args): + """ + Given a URL and an argument object, update the URL's hostname + according to args.host and return the newly-formed URL. + """ + if not args.host: + return url + url_list = list(urlparse.urlsplit(url)) + url_list[1] = args.host + return urlparse.urlunsplit(url_list) + + +def get_contact_list_info(contact_list): + """ + Get contact list info out of contact list + + In rgsummary, this looks like: + + + Administrative Contact + + + Matyas Selmeci + ... + + + + ... + + + and the arg `contact_list` is the contents of a single + + If vosummary, this looks like: + + + Miscellaneous Contact + + + ... + ... + + ... + + + ... + + + and the arg `contact_list` is the contents of + + + Returns: a list of dicts that each look like: + { 'ContactType': 'Administrative Contact', + 'Name': 'Matyas Selmeci', + 'Email': '...', + ... + } + """ + contact_list_info = [] + for contact in contact_list: + if contact.tag == 'ContactType' or contact.tag == 'Type': + contact_list_type = contact.text.lower() + if contact.tag == 'Contacts': + for con in contact: + contact_info = { 'ContactType' : contact_list_type } + for contact_contents in con: + contact_info[contact_contents.tag] = contact_contents.text + contact_list_info.append(contact_info) + + return contact_list_info + + +def filter_contacts(args, results): + """ + Given a set of result contacts, filter them according to given arguments + """ + results = dict(results) # make a copy so we don't modify the original + + if getattr(args, 'name_filter', None): + # filter out undesired names + for name in list(results): + if not fnmatch.fnmatch(name, args.name_filter) and \ + args.name_filter not in name: + del results[name] + elif getattr(args, 'fqdn_filter', None): + # filter out undesired FQDNs + for fqdn in list(results): + if not fnmatch.fnmatch(fqdn, args.fqdn_filter) and \ + args.fqdn_filter not in fqdn: + del results[fqdn] + + if 'all' not in args.contact_type: + # filter out undesired contact types + for name in list(results): + contact_list = [] + for contact in results[name]: + contact_type = contact['ContactType'] + for args_contact_type in args.contact_type: + if contact_type.startswith(args_contact_type): + contact_list.append(contact) + if contact_list == []: + del results[name] + else: + results[name] = contact_list + + if getattr(args, 'contact_emails', None): + for name in list(results): + contact_list = [contact for contact in results[name] if contact['Email'] in args.contact_emails] + if not contact_list: + del results[name] + else: + results[name] = contact_list + + return results + + class TopologyPoolManager(urllib3.PoolManager): def __init__(self): @@ -66,75 +182,6 @@ def get_auth_session(self,args): super().__dict__.update(**session) return True - def update_url_hostname(self, url, args): - """ - Given a URL and an argument object, update the URL's hostname - according to args.host and return the newly-formed URL. - """ - if not args.host: - return url - url_list = list(urlparse.urlsplit(url)) - url_list[1] = args.host - return urlparse.urlunsplit(url_list) - - def get_contact_list_info(self, contact_list): - """ - Get contact list info out of contact list - - In rgsummary, this looks like: - - - Administrative Contact - - - Matyas Selmeci - ... - - - - ... - - - and the arg `contact_list` is the contents of a single - - If vosummary, this looks like: - - - Miscellaneous Contact - - - ... - ... - - ... - - - ... - - - and the arg `contact_list` is the contents of - - - Returns: a list of dicts that each look like: - { 'ContactType': 'Administrative Contact', - 'Name': 'Matyas Selmeci', - 'Email': '...', - ... - } - """ - contact_list_info = [] - for contact in contact_list: - if contact.tag == 'ContactType' or contact.tag == 'Type': - contact_list_type = contact.text.lower() - if contact.tag == 'Contacts': - for con in contact: - contact_info = { 'ContactType' : contact_list_type } - for contact_contents in con: - contact_info[contact_contents.tag] = contact_contents.text - contact_list_info.append(contact_info) - - return contact_list_info - def get_vo_map(self,args): """ @@ -144,7 +191,7 @@ def get_vo_map(self,args): old_no_proxy = os.environ.pop('no_proxy', None) os.environ['no_proxy'] = '.opensciencegrid.org' - url = self.update_url_hostname("https://topology.opensciencegrid.org/vosummary" + url = update_url_hostname("https://topology.opensciencegrid.org/vosummary" "/xml?all_vos=on&active_value=1", args) if not self.session: self.session = self.get_auth_session(args) @@ -293,7 +340,7 @@ def get_vo_contacts(self,args): if item.tag == "ContactTypes": for contact_type in item: contact_list_info.extend( \ - self.get_contact_list_info(contact_type)) + get_contact_list_info(contact_type)) if name and contact_list_info: results[name] = contact_list_info @@ -335,7 +382,7 @@ def get_resource_contacts_by_name_and_fqdn(self,args): for contact_list in resource_tag: if contact_list.tag == 'ContactList': contact_list_info.extend( \ - self.get_contact_list_info(contact_list)) + get_contact_list_info(contact_list)) if contact_list_info: if resource_name: @@ -352,46 +399,3 @@ def get_resource_contacts(self,args): def get_resource_contacts_by_fqdn(self, args): return self.get_resource_contacts_by_name_and_fqdn(args)[1] - - def filter_contacts(self, args, results): - """ - Given a set of result contacts, filter them according to given arguments - """ - results = dict(results) # make a copy so we don't modify the original - - if getattr(args, 'name_filter', None): - # filter out undesired names - for name in list(results): - if not fnmatch.fnmatch(name, args.name_filter) and \ - args.name_filter not in name: - del results[name] - elif getattr(args, 'fqdn_filter', None): - # filter out undesired FQDNs - for fqdn in list(results): - if not fnmatch.fnmatch(fqdn, args.fqdn_filter) and \ - args.fqdn_filter not in fqdn: - del results[fqdn] - - if 'all' not in args.contact_type: - # filter out undesired contact types - for name in list(results): - contact_list = [] - for contact in results[name]: - contact_type = contact['ContactType'] - for args_contact_type in args.contact_type: - if contact_type.startswith(args_contact_type): - contact_list.append(contact) - if contact_list == []: - del results[name] - else: - results[name] = contact_list - - if getattr(args, 'contact_emails', None): - for name in list(results): - contact_list = [contact for contact in results[name] if contact['Email'] in args.contact_emails] - if not contact_list: - del results[name] - else: - results[name] = contact_list - - return results From dc5f9ec99ca0ef7039ac007a64314bcc9411214f Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Mon, 26 Feb 2024 17:40:59 -0600 Subject: [PATCH 051/190] Fix pool manager keyword updates --- src/topology_utils.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/topology_utils.py b/src/topology_utils.py index 5fe99c42f..8de940ddd 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -167,21 +167,18 @@ def get_auth_session(self,args): if args.key: key = args.key - session = {} if os.path.exists(cert): - session["cert_file"] = cert + self.connection_pool_kw["cert_file"] = cert else: raise InvalidPathError("Error: could not find cert at %s" % cert) if os.path.exists(key): - session["key_file"] = key + self.connection_pool_kw["key_file"] = key else: raise InvalidPathError("Error: could not find key at %s" % key) - session['cert_reqs'] = 'CERT_REQUIRED' - session['key_password'] = getpass("decryption password: ") - super().__dict__.update(**session) - return True + self.connection_pool_kw['cert_reqs'] = 'CERT_REQUIRED' + self.connection_pool_kw['key_password'] = getpass("decryption password: ") def get_vo_map(self,args): """ From 105b84d4d2d1fdd69cf68bcaf8ee654b728a8c53 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Mon, 26 Feb 2024 17:42:53 -0600 Subject: [PATCH 052/190] Use f-strings, fix some pylint warnings --- src/topology_utils.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/topology_utils.py b/src/topology_utils.py index 8de940ddd..f145e5c6d 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -147,7 +147,7 @@ def __init__(self): self.session = False super().__init__() - def get_auth_session(self,args): + def get_auth_session(self, args): """ Return a requests session ready for an XML query. """ @@ -156,8 +156,8 @@ def get_auth_session(self,args): cert = '/etc/grid-security/hostcert.pem' key = '/etc/grid-security/hostkey.pem' else: - cert = '/tmp/x509up_u%d' % euid - key = '/tmp/x509up_u%d' % euid + cert = f'/tmp/x509up_u{euid}' + key = f'/tmp/x509up_u{euid}' cert = os.environ.get('X509_USER_PROXY', cert) key = os.environ.get('X509_USER_PROXY', key) @@ -170,12 +170,12 @@ def get_auth_session(self,args): if os.path.exists(cert): self.connection_pool_kw["cert_file"] = cert else: - raise InvalidPathError("Error: could not find cert at %s" % cert) + raise InvalidPathError(f"Error: could not find cert at {cert}") if os.path.exists(key): self.connection_pool_kw["key_file"] = key else: - raise InvalidPathError("Error: could not find key at %s" % key) + raise InvalidPathError(f"Error: could not find key at {key}") self.connection_pool_kw['cert_reqs'] = 'CERT_REQUIRED' self.connection_pool_kw['key_password'] = getpass("decryption password: ") From b848e6f18eceb33d90a076ed290bf8070b137684 Mon Sep 17 00:00:00 2001 From: Emily Yao Date: Fri, 8 Mar 2024 10:22:49 -0600 Subject: [PATCH 053/190] re-added missing break statement --- bin/osg-notify | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/osg-notify b/bin/osg-notify index d6aa0f19b..9d33f33be 100755 --- a/bin/osg-notify +++ b/bin/osg-notify @@ -206,6 +206,7 @@ def main(): results = pm.get_resource_contacts_by_fqdn(args) else: results = pm.get_resource_contacts(args) + break except topology_utils.InvalidPathError as exc: exit(str(exc)) except topology_utils.IncorrectPasswordError as exc: From 19c1d15cf3423e063b0c21ff9491da909741b41b Mon Sep 17 00:00:00 2001 From: Emily Yao Date: Fri, 8 Mar 2024 10:25:16 -0600 Subject: [PATCH 054/190] reverted pool manager keywords --- src/topology_utils.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/topology_utils.py b/src/topology_utils.py index f145e5c6d..ff3525413 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -167,18 +167,21 @@ def get_auth_session(self, args): if args.key: key = args.key + session = {} if os.path.exists(cert): - self.connection_pool_kw["cert_file"] = cert + session["cert_file"] = cert else: raise InvalidPathError(f"Error: could not find cert at {cert}") if os.path.exists(key): - self.connection_pool_kw["key_file"] = key + session["key_file"] = key else: raise InvalidPathError(f"Error: could not find key at {key}") - self.connection_pool_kw['cert_reqs'] = 'CERT_REQUIRED' - self.connection_pool_kw['key_password'] = getpass("decryption password: ") + session['cert_reqs'] = 'CERT_REQUIRED' + session['key_password'] = getpass("decryption password: ") + super().__dict__.update(**session) + return True def get_vo_map(self,args): """ From 56479c252adf8b312a505709a9e586eeb421fdb8 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Fri, 8 Mar 2024 12:43:34 -0800 Subject: [PATCH 055/190] Add downtime for DENVER_INTERNET2_OSDF_CACHE due to overloaded Add downtime for DENVER_INTERNET2_OSDF_CACHE due to overloaded --- .../I2DenverInfrastructure_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/Internet2/Internet2Denver/I2DenverInfrastructure_downtime.yaml b/topology/Internet2/Internet2Denver/I2DenverInfrastructure_downtime.yaml index ac9af6a12..d9b2b4a55 100644 --- a/topology/Internet2/Internet2Denver/I2DenverInfrastructure_downtime.yaml +++ b/topology/Internet2/Internet2Denver/I2DenverInfrastructure_downtime.yaml @@ -9,3 +9,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1749305669 + Description: overloaded + Severity: Outage + StartTime: Mar 08, 2024 20:30 +0000 + EndTime: Mar 11, 2024 20:30 +0000 + CreatedTime: Mar 08, 2024 20:42 +0000 + ResourceName: DENVER_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- From 0e9514d85524b4c46cee50f4699fed0cedc23c80 Mon Sep 17 00:00:00 2001 From: Justas Balcas Date: Mon, 11 Mar 2024 09:43:44 -0500 Subject: [PATCH 056/190] [CIT_CMS_T2] New Squid endpoints --- .../Caltech CMS Tier2/CIT_CMS_T2.yaml | 75 +++++++++++++++++-- 1 file changed, 69 insertions(+), 6 deletions(-) diff --git a/topology/California Institute of Technology/Caltech CMS Tier2/CIT_CMS_T2.yaml b/topology/California Institute of Technology/Caltech CMS Tier2/CIT_CMS_T2.yaml index d527e32f4..24d762f15 100644 --- a/topology/California Institute of Technology/Caltech CMS Tier2/CIT_CMS_T2.yaml +++ b/topology/California Institute of Technology/Caltech CMS Tier2/CIT_CMS_T2.yaml @@ -144,7 +144,7 @@ Resources: KSI2KMin: 0 StorageCapacityMax: 0 StorageCapacityMin: 0 - CIT_CMS_T2_Squid: + CIT_CMS_T2_Squid_K8s: Active: true ContactLists: Administrative Contact: @@ -168,14 +168,15 @@ Resources: ID: OSG1000240 Name: Sravya Uppalapati Description: Squid service for frontier and cvmfs - FQDN: proxy-1.ultralight.org - ID: 688 + FQDN: k8s-squid-01.ultralight.org + ID: 1488 Services: Squid: Description: Generic squid service VOOwnership: CMS: 100 - CIT_CMS_T2_2_Squid: + CIT_CMS_T2_2_Squid_K8s: + Active: true ContactLists: Administrative Contact: Primary: @@ -198,8 +199,8 @@ Resources: ID: OSG1000240 Name: Sravya Uppalapati Description: Second Squid service for frontier and cvmfs - FQDN: proxy-2.ultralight.org - ID: 225 + FQDN: k8s-squid-02.ultralight.org + ID: 1489 Services: Squid: Description: Generic squid service @@ -475,6 +476,68 @@ Resources: # The following below are non active old resources. Not deleting them - as instructed by OSG Team. # All of them are set to Active: false # ================================================================================================= + CIT_CMS_T2_Squid: + Active: false + ContactLists: + Administrative Contact: + Primary: + ID: 6895284f54fb41f9daafc4b6d0a7ea42c57e31be + Name: Justas Balcas + Secondary: + ID: 5e2a78ef254d5b584751f4de9cd490287301e8e7 + Name: Andres Moya Ignatov + Tertiary: + ID: OSG1000240 + Name: Sravya Uppalapati + Security Contact: + Primary: + ID: 6895284f54fb41f9daafc4b6d0a7ea42c57e31be + Name: Justas Balcas + Secondary: + ID: 5e2a78ef254d5b584751f4de9cd490287301e8e7 + Name: Andres Moya Ignatov + Tertiary: + ID: OSG1000240 + Name: Sravya Uppalapati + Description: Squid service for frontier and cvmfs + FQDN: proxy-1.ultralight.org + ID: 688 + Services: + Squid: + Description: Generic squid service + VOOwnership: + CMS: 100 + CIT_CMS_T2_2_Squid: + Active: false + ContactLists: + Administrative Contact: + Primary: + ID: 6895284f54fb41f9daafc4b6d0a7ea42c57e31be + Name: Justas Balcas + Secondary: + ID: 5e2a78ef254d5b584751f4de9cd490287301e8e7 + Name: Andres Moya Ignatov + Tertiary: + ID: OSG1000240 + Name: Sravya Uppalapati + Security Contact: + Primary: + ID: 6895284f54fb41f9daafc4b6d0a7ea42c57e31be + Name: Justas Balcas + Secondary: + ID: 5e2a78ef254d5b584751f4de9cd490287301e8e7 + Name: Andres Moya Ignatov + Tertiary: + ID: OSG1000240 + Name: Sravya Uppalapati + Description: Second Squid service for frontier and cvmfs + FQDN: proxy-2.ultralight.org + ID: 225 + Services: + Squid: + Description: Generic squid service + VOOwnership: + CMS: 100 CIT_CMS_T2L: Active: false ContactLists: From 8f8366102477bc752bab9147aba902aec473af6e Mon Sep 17 00:00:00 2001 From: Jeff Dost Date: Mon, 11 Mar 2024 09:04:17 -0700 Subject: [PATCH 057/190] put Clarkson in downtime until we can spin up a new CE --- .../Clarkson - ACRES/Clarkson-ACRES_downtime.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 topology/Clarkson University/Clarkson - ACRES/Clarkson-ACRES_downtime.yaml diff --git a/topology/Clarkson University/Clarkson - ACRES/Clarkson-ACRES_downtime.yaml b/topology/Clarkson University/Clarkson - ACRES/Clarkson-ACRES_downtime.yaml new file mode 100644 index 000000000..d6ed09dce --- /dev/null +++ b/topology/Clarkson University/Clarkson - ACRES/Clarkson-ACRES_downtime.yaml @@ -0,0 +1,12 @@ +- Class: UNSCHEDULED + ID: 1751729220 + Description: CE needs to be migrated off river / slate + Severity: Outage + StartTime: Mar 11, 2024 16:00 +0000 + EndTime: Mar 10, 2025 16:00 +0000 + CreatedTime: Mar 11, 2024 16:02 +0000 + ResourceName: Clarkson-ACRES-CE2 + Services: + - CE +# --------------------------------------------------------- + From e84c6c231b6502a8ffbd24af061ab503c627ce15 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 11 Mar 2024 19:02:36 -0400 Subject: [PATCH 058/190] fixing issuer fixing issuer --- virtual-organizations/NRP.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtual-organizations/NRP.yaml b/virtual-organizations/NRP.yaml index bcde06a3c..dad2d446a 100644 --- a/virtual-organizations/NRP.yaml +++ b/virtual-organizations/NRP.yaml @@ -73,7 +73,7 @@ DataFederations: - Path: /knightlab/mirror/ncbi-genbank-refseq Authorizations: - SciTokens: - Issuer: https://token.nationalresearchplatform.org/knightlab + Issuer: https://t.nationalresearchplatform.org/knightlab Base Path: /knightlab/mirror/ncbi-genbank-refseq Map Subject: False AllowedOrigins: From 79358c15d57da2329b33076ae903c00553971105 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 13 Mar 2024 11:41:05 -0400 Subject: [PATCH 059/190] fixing the /knightlab/mirror/ncbi-genbank-refseq for public read fixing the /knightlab/mirror/ncbi-genbank-refseq for public read --- virtual-organizations/NRP.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/virtual-organizations/NRP.yaml b/virtual-organizations/NRP.yaml index dad2d446a..a7fb3d235 100644 --- a/virtual-organizations/NRP.yaml +++ b/virtual-organizations/NRP.yaml @@ -72,6 +72,7 @@ DataFederations: - ANY - Path: /knightlab/mirror/ncbi-genbank-refseq Authorizations: + - PUBLIC - SciTokens: Issuer: https://t.nationalresearchplatform.org/knightlab Base Path: /knightlab/mirror/ncbi-genbank-refseq From 43d5e6ad34718d4618e5b52142677c3ee77fc817 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Wed, 13 Mar 2024 10:59:49 -0500 Subject: [PATCH 060/190] Add new commented-out LHC IAM development instances Comment them out since the osg-scitokens-mapfile uses these sections for generating the HTCondor-CE example mapfiles. To do that, we need a reasonable subject and default Unix user. --- virtual-organizations/ALICE.yaml | 4 ++++ virtual-organizations/ATLAS.yaml | 2 ++ virtual-organizations/CMS.yaml | 2 ++ virtual-organizations/LHCb.yaml | 4 ++++ 4 files changed, 12 insertions(+) diff --git a/virtual-organizations/ALICE.yaml b/virtual-organizations/ALICE.yaml index b39f920d3..97f014f92 100644 --- a/virtual-organizations/ALICE.yaml +++ b/virtual-organizations/ALICE.yaml @@ -1,5 +1,9 @@ AppDescription: ALICE collaboration, High Energy Physics experiment at CERN LHC CertificateOnly: false +# Credentials: +# TokenIssuers: +# - Description: ALICE IAM development instance +# URL: https://alice-auth.cern.ch/ Community: HEP Contacts: Administrative Contact: diff --git a/virtual-organizations/ATLAS.yaml b/virtual-organizations/ATLAS.yaml index 769f5f59c..5c6ca9291 100644 --- a/virtual-organizations/ATLAS.yaml +++ b/virtual-organizations/ATLAS.yaml @@ -14,6 +14,8 @@ Credentials: Subject: 750e9609-485a-4ed4-bf16-d5cc46c71024 URL: https://atlas-auth.web.cern.ch/ DefaultUnixUser: usatlas3 + # - Description: ATLAS IAM development instance + # URL: https://atlas-auth.cern.ch/ Community: The ATLAS physics community. Contacts: Administrative Contact: diff --git a/virtual-organizations/CMS.yaml b/virtual-organizations/CMS.yaml index c47ee64f7..b91117c38 100644 --- a/virtual-organizations/CMS.yaml +++ b/virtual-organizations/CMS.yaml @@ -39,6 +39,8 @@ Credentials: URL: https://cms-auth.web.cern.ch/ DefaultUnixUser: uscms + # - Description: CMS IAM development instance + # URL: https://CMS-auth.cern.ch/ Contacts: Administrative Contact: - ID: 8489f9d11ec9723ae9f11619d325dbfa5516397c diff --git a/virtual-organizations/LHCb.yaml b/virtual-organizations/LHCb.yaml index 4831c6919..873305bc7 100644 --- a/virtual-organizations/LHCb.yaml +++ b/virtual-organizations/LHCb.yaml @@ -1,5 +1,9 @@ AppDescription: Data analysis and simulation work is carried out. CertificateOnly: true +# Credentials: +# TokenIssuers: +# - Description: LHCb IAM development instance +# URL: https://lhcb-auth.cern.ch/ Community: Large Hadron Collider Beauty Experiment studies production and decay of particles containing beauty and charm quarks. Contacts: From 5f91b4ace51ceb11a62fb09e8c234bc725f598fa Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 14 Mar 2024 12:16:41 -0400 Subject: [PATCH 061/190] Add downtime for Stashcache-UCSD due to changing main volume Add downtime for Stashcache-UCSD due to changing main volume --- .../UCSD OSG/StashCaches_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/University of California San Diego/UCSD OSG/StashCaches_downtime.yaml b/topology/University of California San Diego/UCSD OSG/StashCaches_downtime.yaml index 5f5b9c28c..8078f7642 100644 --- a/topology/University of California San Diego/UCSD OSG/StashCaches_downtime.yaml +++ b/topology/University of California San Diego/UCSD OSG/StashCaches_downtime.yaml @@ -19,3 +19,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1754329572 + Description: changing main volume + Severity: Outage + StartTime: Mar 14, 2024 16:30 +0000 + EndTime: Mar 15, 2024 16:30 +0000 + CreatedTime: Mar 14, 2024 16:15 +0000 + ResourceName: Stashcache-UCSD + Services: + - XRootD cache server +# --------------------------------------------------------- From 4cdea3261638a49fcfe9f65636d6aeff569e3242 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 14 Mar 2024 13:35:37 -0400 Subject: [PATCH 062/190] removing downtime removing downtime --- .../UCSD OSG/StashCaches_downtime.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of California San Diego/UCSD OSG/StashCaches_downtime.yaml b/topology/University of California San Diego/UCSD OSG/StashCaches_downtime.yaml index 8078f7642..578659014 100644 --- a/topology/University of California San Diego/UCSD OSG/StashCaches_downtime.yaml +++ b/topology/University of California San Diego/UCSD OSG/StashCaches_downtime.yaml @@ -24,7 +24,7 @@ Description: changing main volume Severity: Outage StartTime: Mar 14, 2024 16:30 +0000 - EndTime: Mar 15, 2024 16:30 +0000 + EndTime: Mar 14, 2024 16:30 +0000 CreatedTime: Mar 14, 2024 16:15 +0000 ResourceName: Stashcache-UCSD Services: From c6877ffa31dc8498adc13ef5913acf539a09ed4a Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 14 Mar 2024 15:30:10 -0400 Subject: [PATCH 063/190] changing knightlab one level down changing knightlab one level down --- virtual-organizations/NRP.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/virtual-organizations/NRP.yaml b/virtual-organizations/NRP.yaml index a7fb3d235..95f555486 100644 --- a/virtual-organizations/NRP.yaml +++ b/virtual-organizations/NRP.yaml @@ -70,12 +70,12 @@ DataFederations: - SDSC_NRP_OSDF_ORIGIN AllowedCaches: - ANY - - Path: /knightlab/mirror/ncbi-genbank-refseq + - Path: /knightlab/mirror Authorizations: - PUBLIC - SciTokens: Issuer: https://t.nationalresearchplatform.org/knightlab - Base Path: /knightlab/mirror/ncbi-genbank-refseq + Base Path: /knightlab/mirror Map Subject: False AllowedOrigins: - SDSC_NRP_OSDF_ORIGIN From aca262656d608bffa7c7c6856b16cada16023ab9 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Fri, 15 Mar 2024 15:36:05 -0500 Subject: [PATCH 064/190] Set the endpoints for sc-cache.chtc.wisc.edu to the instance served by Pelican --- topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml b/topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml index 52abf7180..e61edbdb7 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml @@ -30,6 +30,9 @@ Resources: Services: XRootD cache server: Description: StashCache cache server + Details: + endpoint_override: sc-cache.chtc.wisc.edu:8443 + auth_endpoint_override: sc-cache.chtc.wisc.edu:8443 VOOwnership: GLOW: 100 AllowedVOs: From d3f9027e0016516d7a330ade3f0b3c7a9c2a88db Mon Sep 17 00:00:00 2001 From: Andrew Owen <60940495+aowen-uwmad@users.noreply.github.com> Date: Fri, 15 Mar 2024 16:35:16 -0500 Subject: [PATCH 065/190] Create Yale_DeMartini.yaml Per https://support.opensciencegrid.org/a/tickets/75896 --- projects/Yale_DeMartini.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 projects/Yale_DeMartini.yaml diff --git a/projects/Yale_DeMartini.yaml b/projects/Yale_DeMartini.yaml new file mode 100644 index 000000000..bf9bb3a24 --- /dev/null +++ b/projects/Yale_DeMartini.yaml @@ -0,0 +1,7 @@ +Department: Department of Physics +Description: Numerical simulations of the (1+1)D abelian Higgs theory on the lattice + focusing on the computation of the sphaleron rate at finite temperatures and potential + connections between confinement and entanglement entropy. +FieldOfScience: Nuclear Physics +Organization: Yale University +PIName: Dallas DeMartini From 7787309efffbdf080f3f5a1213d45bfbffabb7f5 Mon Sep 17 00:00:00 2001 From: Jadir Marra da Silva Date: Sun, 17 Mar 2024 08:17:18 -0300 Subject: [PATCH 066/190] Update SPRACE_downtime.yaml Site is offline due a network outage --- .../SPRACE/SPRACE_downtime.yaml | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml b/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml index be3d64a45..dbb60632f 100644 --- a/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml +++ b/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml @@ -2950,3 +2950,80 @@ Services: - Squid # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1756741725 + Description: network outage + Severity: Outage + StartTime: Mar 17, 2024 11:15 +0000 + EndTime: Mar 17, 2024 22:00 +0000 + CreatedTime: Mar 17, 2024 11:16 +0000 + ResourceName: BR-Sprace BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1756741726 + Description: network outage + Severity: Outage + StartTime: Mar 17, 2024 11:15 +0000 + EndTime: Mar 17, 2024 22:00 +0000 + CreatedTime: Mar 17, 2024 11:16 +0000 + ResourceName: BR-Sprace LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1756741727 + Description: network outage + Severity: Outage + StartTime: Mar 17, 2024 11:15 +0000 + EndTime: Mar 17, 2024 22:00 +0000 + CreatedTime: Mar 17, 2024 11:16 +0000 + ResourceName: SPRACE + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1756741728 + Description: network outage + Severity: Outage + StartTime: Mar 17, 2024 11:15 +0000 + EndTime: Mar 17, 2024 22:00 +0000 + CreatedTime: Mar 17, 2024 11:16 +0000 + ResourceName: SPRACE-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1756741729 + Description: network outage + Severity: Outage + StartTime: Mar 17, 2024 11:15 +0000 + EndTime: Mar 17, 2024 22:00 +0000 + CreatedTime: Mar 17, 2024 11:16 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1756741730 + Description: network outage + Severity: Outage + StartTime: Mar 17, 2024 11:15 +0000 + EndTime: Mar 17, 2024 22:00 +0000 + CreatedTime: Mar 17, 2024 11:16 +0000 + ResourceName: T2_BR_SPRACE-squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1756741731 + Description: network outage + Severity: Outage + StartTime: Mar 17, 2024 11:15 +0000 + EndTime: Mar 17, 2024 22:00 +0000 + CreatedTime: Mar 17, 2024 11:16 +0000 + ResourceName: T2_BR_SPRACE-squid2 + Services: + - Squid +# --------------------------------------------------------- From 4f9d658192cbcee82c1e835823317b145b7ea690 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 18 Mar 2024 10:29:48 -0700 Subject: [PATCH 067/190] Add downtime for Stashcache-Chicago due to major overloaded Add downtime for Stashcache-Chicago due to major overloaded --- .../I2ChicagoInfrastructure_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 topology/Internet2/Internet2Chicago/I2ChicagoInfrastructure_downtime.yaml diff --git a/topology/Internet2/Internet2Chicago/I2ChicagoInfrastructure_downtime.yaml b/topology/Internet2/Internet2Chicago/I2ChicagoInfrastructure_downtime.yaml new file mode 100644 index 000000000..8890e9e18 --- /dev/null +++ b/topology/Internet2/Internet2Chicago/I2ChicagoInfrastructure_downtime.yaml @@ -0,0 +1,11 @@ +- Class: UNSCHEDULED + ID: 1757829393 + Description: major overloaded + Severity: Outage + StartTime: Mar 17, 2024 19:01 +0000 + EndTime: Mar 22, 2024 19:30 +0000 + CreatedTime: Mar 18, 2024 17:28 +0000 + ResourceName: Stashcache-Chicago + Services: + - XRootD cache server +# --------------------------------------------------------- From 53661edd3fd26e647dd262fd6d6c6d19c5a18e3c Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 18 Mar 2024 10:42:32 -0700 Subject: [PATCH 068/190] Add downtime for Stashcache-Kansas due to overloaded Add downtime for Stashcache-Kansas due to overloaded --- .../I2GreatPlainsInfrastructure_downtime.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/topology/Internet2/Internet2GreatPlains/I2GreatPlainsInfrastructure_downtime.yaml b/topology/Internet2/Internet2GreatPlains/I2GreatPlainsInfrastructure_downtime.yaml index 3dd5d2a75..de10d6ed3 100644 --- a/topology/Internet2/Internet2GreatPlains/I2GreatPlainsInfrastructure_downtime.yaml +++ b/topology/Internet2/Internet2GreatPlains/I2GreatPlainsInfrastructure_downtime.yaml @@ -17,3 +17,15 @@ ResourceName: Stashcache-Kansas Services: - XRootD cache server +# --------------------------------------------------------- + - Class: UNSCHEDULED + ID: 1757836986 + Description: Overloaded + Severity: Outage + StartTime: Mar 17, 2024 19:30 +0000 + EndTime: Mar 22, 2024 19:30 +0000 + CreatedTime: Mar 18, 2024 17:41 +0000 + ResourceName: Stashcache-Kansas + Services: + - XRootD cache server +# --------------------------------------------------------- From 4bd0dd150b4b4d6e3aaaff86610b76a8ee922884 Mon Sep 17 00:00:00 2001 From: Tim Cartwright Date: Mon, 18 Mar 2024 17:10:57 -0500 Subject: [PATCH 069/190] Activated Michigan St ICER DataMachine; FD #74167 --- .../Michigan State University/MSU ICER/MSU-DataMachine.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/Michigan State University/MSU ICER/MSU-DataMachine.yaml b/topology/Michigan State University/MSU ICER/MSU-DataMachine.yaml index 732372c8a..8d26d8295 100644 --- a/topology/Michigan State University/MSU ICER/MSU-DataMachine.yaml +++ b/topology/Michigan State University/MSU ICER/MSU-DataMachine.yaml @@ -19,7 +19,7 @@ Resources: MSU-DataMachine-CE1: # Active is true if the resource is accepting requests, and false otherwise. # When first registering a resource, set this to false. Set it to true when it's ready for production. - Active: false + Active: true # Description is a long description of the resource; may be multiple lines Description: Hosted CE serving MSU # ContactLists contain information about people to contact regarding this resource. From 3ea41153b62dde9e8c2e89a7ad22e3d33492efc5 Mon Sep 17 00:00:00 2001 From: Jadir Marra da Silva Date: Tue, 19 Mar 2024 13:04:39 -0300 Subject: [PATCH 070/190] Update SPRACE_downtime.yaml --- .../SPRACE/SPRACE_downtime.yaml | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml b/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml index dbb60632f..d1bab13bd 100644 --- a/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml +++ b/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml @@ -3027,3 +3027,80 @@ Services: - Squid # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1758641854 + Description: network outage + Severity: Outage + StartTime: Mar 19, 2024 16:02 +0000 + EndTime: Mar 19, 2024 21:00 +0000 + CreatedTime: Mar 19, 2024 16:03 +0000 + ResourceName: BR-Sprace BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1758641855 + Description: network outage + Severity: Outage + StartTime: Mar 19, 2024 16:02 +0000 + EndTime: Mar 19, 2024 21:00 +0000 + CreatedTime: Mar 19, 2024 16:03 +0000 + ResourceName: BR-Sprace LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1758641856 + Description: network outage + Severity: Outage + StartTime: Mar 19, 2024 16:02 +0000 + EndTime: Mar 19, 2024 21:00 +0000 + CreatedTime: Mar 19, 2024 16:03 +0000 + ResourceName: SPRACE + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1758641857 + Description: network outage + Severity: Outage + StartTime: Mar 19, 2024 16:02 +0000 + EndTime: Mar 19, 2024 21:00 +0000 + CreatedTime: Mar 19, 2024 16:03 +0000 + ResourceName: SPRACE-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1758641858 + Description: network outage + Severity: Outage + StartTime: Mar 19, 2024 16:02 +0000 + EndTime: Mar 19, 2024 21:00 +0000 + CreatedTime: Mar 19, 2024 16:03 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1758641859 + Description: network outage + Severity: Outage + StartTime: Mar 19, 2024 16:02 +0000 + EndTime: Mar 19, 2024 21:00 +0000 + CreatedTime: Mar 19, 2024 16:03 +0000 + ResourceName: T2_BR_SPRACE-squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1758641860 + Description: network outage + Severity: Outage + StartTime: Mar 19, 2024 16:02 +0000 + EndTime: Mar 19, 2024 21:00 +0000 + CreatedTime: Mar 19, 2024 16:03 +0000 + ResourceName: T2_BR_SPRACE-squid2 + Services: + - Squid +# --------------------------------------------------------- From f6fd21bada02f8d2efcfffbc138dc55ae2fa4bfe Mon Sep 17 00:00:00 2001 From: Jadir Marra da Silva Date: Tue, 19 Mar 2024 17:14:36 -0300 Subject: [PATCH 071/190] Update SPRACE_downtime.yaml --- .../SPRACE/SPRACE_downtime.yaml | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml b/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml index d1bab13bd..30a13d8b0 100644 --- a/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml +++ b/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml @@ -3104,3 +3104,80 @@ Services: - Squid # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1758792503 + Description: network outage - fiber cut + Severity: Outage + StartTime: Mar 19, 2024 21:01 +0000 + EndTime: Mar 20, 2024 15:00 +0000 + CreatedTime: Mar 19, 2024 20:14 +0000 + ResourceName: BR-Sprace BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1758792504 + Description: network outage - fiber cut + Severity: Outage + StartTime: Mar 19, 2024 21:01 +0000 + EndTime: Mar 20, 2024 15:00 +0000 + CreatedTime: Mar 19, 2024 20:14 +0000 + ResourceName: BR-Sprace LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1758792505 + Description: network outage - fiber cut + Severity: Outage + StartTime: Mar 19, 2024 21:01 +0000 + EndTime: Mar 20, 2024 15:00 +0000 + CreatedTime: Mar 19, 2024 20:14 +0000 + ResourceName: SPRACE + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1758792506 + Description: network outage - fiber cut + Severity: Outage + StartTime: Mar 19, 2024 21:01 +0000 + EndTime: Mar 20, 2024 15:00 +0000 + CreatedTime: Mar 19, 2024 20:14 +0000 + ResourceName: SPRACE-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1758792507 + Description: network outage - fiber cut + Severity: Outage + StartTime: Mar 19, 2024 21:01 +0000 + EndTime: Mar 20, 2024 15:00 +0000 + CreatedTime: Mar 19, 2024 20:14 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1758792508 + Description: network outage - fiber cut + Severity: Outage + StartTime: Mar 19, 2024 21:01 +0000 + EndTime: Mar 20, 2024 15:00 +0000 + CreatedTime: Mar 19, 2024 20:14 +0000 + ResourceName: T2_BR_SPRACE-squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1758792509 + Description: network outage - fiber cut + Severity: Outage + StartTime: Mar 19, 2024 21:01 +0000 + EndTime: Mar 20, 2024 15:00 +0000 + CreatedTime: Mar 19, 2024 20:14 +0000 + ResourceName: T2_BR_SPRACE-squid2 + Services: + - Squid +# --------------------------------------------------------- From c0a34d089065a1389698a0ffdad1abfe67ced281 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 19 Mar 2024 17:52:36 -0700 Subject: [PATCH 072/190] adding sage adding sage --- virtual-organizations/UCSD.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/virtual-organizations/UCSD.yaml b/virtual-organizations/UCSD.yaml index 93ef45bff..564077232 100644 --- a/virtual-organizations/UCSD.yaml +++ b/virtual-organizations/UCSD.yaml @@ -49,6 +49,16 @@ DataFederations: - NEBRASKA_NRP_OSDF_ORIGIN AllowedCaches: - ANY + - Path: /ndp/sage + Authorizations: + - SciTokens: + Issuer: https://t.nationalresearchplatform.org/sage + Base Path: /ndp/sage + Map Subject: False + AllowedOrigins: + - NEBRASKA_NRP_OSDF_ORIGIN + AllowedCaches: + - ANY - Path: /ndp/keycloak-testing Authorizations: - SciTokens: From 3c119eb864c89d2ee08201f67f1ec634a74ed469 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Wed, 20 Mar 2024 09:12:24 -0500 Subject: [PATCH 073/190] Revert "adding sage" --- virtual-organizations/UCSD.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/virtual-organizations/UCSD.yaml b/virtual-organizations/UCSD.yaml index 564077232..93ef45bff 100644 --- a/virtual-organizations/UCSD.yaml +++ b/virtual-organizations/UCSD.yaml @@ -49,16 +49,6 @@ DataFederations: - NEBRASKA_NRP_OSDF_ORIGIN AllowedCaches: - ANY - - Path: /ndp/sage - Authorizations: - - SciTokens: - Issuer: https://t.nationalresearchplatform.org/sage - Base Path: /ndp/sage - Map Subject: False - AllowedOrigins: - - NEBRASKA_NRP_OSDF_ORIGIN - AllowedCaches: - - ANY - Path: /ndp/keycloak-testing Authorizations: - SciTokens: From e45994e2f5e92867d3953687d01522a1dd25b646 Mon Sep 17 00:00:00 2001 From: Matthew Westphall Date: Wed, 20 Mar 2024 09:45:48 -0500 Subject: [PATCH 074/190] add token issuers for the CERN IAM development instances --- virtual-organizations/ATLAS.yaml | 18 +++++++++++++-- virtual-organizations/CMS.yaml | 38 ++++++++++++++++++++++++++++++-- 2 files changed, 52 insertions(+), 4 deletions(-) diff --git a/virtual-organizations/ATLAS.yaml b/virtual-organizations/ATLAS.yaml index 5c6ca9291..fc6febead 100644 --- a/virtual-organizations/ATLAS.yaml +++ b/virtual-organizations/ATLAS.yaml @@ -14,8 +14,22 @@ Credentials: Subject: 750e9609-485a-4ed4-bf16-d5cc46c71024 URL: https://atlas-auth.web.cern.ch/ DefaultUnixUser: usatlas3 - # - Description: ATLAS IAM development instance - # URL: https://atlas-auth.cern.ch/ + + # IAM development instances + + - Description: ATLAS IAM development instance + Subject: 7dee38a3-6ab8-4fe2-9e4c-58039c21d817 + URL: https://atlas-auth.cern.ch/ + DefaultUnixUser: usatlas1 + - Description: ATLAS SAM/ETF (development) + Subject: 5c5d2a4d-9177-3efa-912f-1b4e5c9fb660 + URL: https://atlas-auth.cern.ch/ + DefaultUnixUser: usatlas2 + - Description: ATLAS analysis (development) + Subject: 750e9609-485a-4ed4-bf16-d5cc46c71024 + URL: https://atlas-auth.cern.ch/ + DefaultUnixUser: usatlas3 + Community: The ATLAS physics community. Contacts: Administrative Contact: diff --git a/virtual-organizations/CMS.yaml b/virtual-organizations/CMS.yaml index b91117c38..c740c0b34 100644 --- a/virtual-organizations/CMS.yaml +++ b/virtual-organizations/CMS.yaml @@ -39,8 +39,42 @@ Credentials: URL: https://cms-auth.web.cern.ch/ DefaultUnixUser: uscms - # - Description: CMS IAM development instance - # URL: https://CMS-auth.cern.ch/ + # IAM development instances + + - Description: CMS IAM development instance + Subject: bad55f4e-602c-4e8d-a5c5-bd8ffb762113 + URL: https://CMS-auth.cern.ch/ + DefaultUnixUser: cmspilot + + - Description: SAM/ETF tests (development) + Subject: 08ca855e-d715-410e-a6ff-ad77306e1763 + URL: https://CMS-auth.cern.ch/ + DefaultUnixUser: lcgadmin + + - Description: CMS ITB pilots (development) + Subject: 490a9a36-0268-4070-8813-65af031be5a3 + URL: https://CMS-auth.cern.ch/ + DefaultUnixUser: cmspilot + + - Description: CMS LOCAL pilots (development) + Subject: 07f75a9a-bb78-4735-938b-7e61b2b62d5c + URL: https://CMS-auth.cern.ch/ + DefaultUnixUser: cmslocal + + - Description: CMS ITB LOCAL pilots (development) + Subject: efbed8c1-f9a7-4063-92f7-f89c04ce04a3 + URL: https://CMS-auth.cern.ch/ + DefaultUnixUser: cmslocal + + - Description: USCMS LOCAL pilots (development) + Subject: 99b97e4f-5cf0-4d3b-9fcc-82fa86dca1e8 + URL: https://CMS-auth.cern.ch/ + DefaultUnixUser: uscmslocal + + - Description: USCMS HEPCloud pilots (development) + Subject: 2f327ad0-1934-4635-8ba3-ee72da0a304c + URL: https://CMS-auth.cern.ch/ + DefaultUnixUser: uscms Contacts: Administrative Contact: - ID: 8489f9d11ec9723ae9f11619d325dbfa5516397c From 4d7bbaa200868f8c2be7aa6dffdd078b9025a451 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 20 Mar 2024 10:24:58 -0700 Subject: [PATCH 075/190] Creating sage base VO Creating sage base VO --- virtual-organizations/SAGE.yaml | 41 +++++++++++++++++++++++++++++++++ virtual-organizations/UCSD.yaml | 10 -------- 2 files changed, 41 insertions(+), 10 deletions(-) create mode 100644 virtual-organizations/SAGE.yaml diff --git a/virtual-organizations/SAGE.yaml b/virtual-organizations/SAGE.yaml new file mode 100644 index 000000000..49d56528f --- /dev/null +++ b/virtual-organizations/SAGE.yaml @@ -0,0 +1,41 @@ +AppDescription: This VO supports multiple sciences on SAGE +CertificateOnly: false +Community: The SAGE VO will support users and experiments from SAGE project. +Contacts: + Administrative Contact: + - ID: OSG1000162 + Name: Fabio Andrijauskas + Security Contact: + - ID: OSG1000162 + Name: Fabio Andrijauskas + Sponsors: + - ID: c412f5f57dca8fe5c73fb3bc4e86bcf243e9edf7 + Name: Frank Wuerthwein + VO Manager: + - ID: OSG1000162 + Name: Fabio Andrijauskas +Credentials: + TokenIssuers: + - URL: + DefaultUnixUser: +Disable: false +FieldsOfScience: + PrimaryFields: + - Multi-Science Community +ID: 237 +LongName: SAGE multiple sciences origin +DataFederations: + StashCache: + Namespaces: + - Path: /sage + Authorizations: + - SciTokens: + Issuer: https://t.nationalresearchplatform.org/sage + Base Path: /sage + Map Subject: False + - PUBLIC + AllowedOrigins: + - NEBRASKA_NRP_OSDF_ORIGIN + AllowedCaches: + - ANY + \ No newline at end of file diff --git a/virtual-organizations/UCSD.yaml b/virtual-organizations/UCSD.yaml index 564077232..93ef45bff 100644 --- a/virtual-organizations/UCSD.yaml +++ b/virtual-organizations/UCSD.yaml @@ -49,16 +49,6 @@ DataFederations: - NEBRASKA_NRP_OSDF_ORIGIN AllowedCaches: - ANY - - Path: /ndp/sage - Authorizations: - - SciTokens: - Issuer: https://t.nationalresearchplatform.org/sage - Base Path: /ndp/sage - Map Subject: False - AllowedOrigins: - - NEBRASKA_NRP_OSDF_ORIGIN - AllowedCaches: - - ANY - Path: /ndp/keycloak-testing Authorizations: - SciTokens: From 8dcd7fd239816d320d4950dd77acc0d4984618c4 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 20 Mar 2024 10:51:48 -0700 Subject: [PATCH 076/190] changing FQDN stashcache-edi-scotgrid-ac-uk.nationalresearchplatform.org changing FQDN stashcache-edi-scotgrid-ac-uk.nationalresearchplatform.org --- .../Scotgrid ECDF/UKI-SCOTGRID-CDF.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topology/University of Edinburgh/Scotgrid ECDF/UKI-SCOTGRID-CDF.yaml b/topology/University of Edinburgh/Scotgrid ECDF/UKI-SCOTGRID-CDF.yaml index 7c706e63a..d3b2800b1 100644 --- a/topology/University of Edinburgh/Scotgrid ECDF/UKI-SCOTGRID-CDF.yaml +++ b/topology/University of Edinburgh/Scotgrid ECDF/UKI-SCOTGRID-CDF.yaml @@ -23,8 +23,8 @@ Resources: Secondary: ID: bde85f0ad08903e1680b531bde422571feca8981 Name: Peter Clarke - FQDN: stashcache.edi.scotgrid.ac.uk - DN: /C=UK/O=eScience/OU=Edinburgh/L=NeSC/CN=stashcache.edi.scotgrid.ac.uk + FQDN: stashcache-edi-scotgrid-ac-uk.nationalresearchplatform.org + DN: DC=org/DC=incommon/C=US/ST=California/O="University of California, San Diego"/CN=stashcache-edi-scotgrid-ac-uk.nationalresearchplatform.org Services: XRootD cache server: Description: OSDF cache server From 3c2909c690187e6df9279a2a94bd79239c406b5d Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 20 Mar 2024 11:12:37 -0700 Subject: [PATCH 077/190] Fixing DN Fixing DN --- .../University of Edinburgh/Scotgrid ECDF/UKI-SCOTGRID-CDF.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of Edinburgh/Scotgrid ECDF/UKI-SCOTGRID-CDF.yaml b/topology/University of Edinburgh/Scotgrid ECDF/UKI-SCOTGRID-CDF.yaml index d3b2800b1..b86508a58 100644 --- a/topology/University of Edinburgh/Scotgrid ECDF/UKI-SCOTGRID-CDF.yaml +++ b/topology/University of Edinburgh/Scotgrid ECDF/UKI-SCOTGRID-CDF.yaml @@ -24,7 +24,7 @@ Resources: ID: bde85f0ad08903e1680b531bde422571feca8981 Name: Peter Clarke FQDN: stashcache-edi-scotgrid-ac-uk.nationalresearchplatform.org - DN: DC=org/DC=incommon/C=US/ST=California/O="University of California, San Diego"/CN=stashcache-edi-scotgrid-ac-uk.nationalresearchplatform.org + DN: /DC=org/DC=incommon/C=US/ST=California/O=University of California, San Diego/CN=stashcache-edi-scotgrid-ac-uk.nationalresearchplatform.org Services: XRootD cache server: Description: OSDF cache server From fa6e102a67250dd434de94add73021f888020698 Mon Sep 17 00:00:00 2001 From: Dave Dykstra <2129743+DrDaveD@users.noreply.github.com> Date: Wed, 20 Mar 2024 14:13:21 -0500 Subject: [PATCH 078/190] restore host for fifuser1 & 2 --- virtual-organizations/Fermilab.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/virtual-organizations/Fermilab.yaml b/virtual-organizations/Fermilab.yaml index a270b4a69..fc82e7ebe 100644 --- a/virtual-organizations/Fermilab.yaml +++ b/virtual-organizations/Fermilab.yaml @@ -54,8 +54,8 @@ OASIS: - http://oasiscfs.fnal.gov:8000/cvmfs/fermilab.opensciencegrid.org - http://oasiscfs.fnal.gov:8000/cvmfs/larsoft.opensciencegrid.org - http://oasiscfs.fnal.gov:8000/cvmfs/scisoft.opensciencegrid.org - - http://rcds02.fnal.gov:8000/cvmfs/fifeuser1.opensciencegrid.org - - http://rcds02.fnal.gov:8000/cvmfs/fifeuser2.opensciencegrid.org + - http://rcds01.fnal.gov:8000/cvmfs/fifeuser1.opensciencegrid.org + - http://rcds01.fnal.gov:8000/cvmfs/fifeuser2.opensciencegrid.org - http://rcds02.fnal.gov:8000/cvmfs/fifeuser3.opensciencegrid.org - http://rcds02.fnal.gov:8000/cvmfs/fifeuser4.opensciencegrid.org UseOASIS: false From 3e83a08a8aa89fb30add122fc813eb8c203639c6 Mon Sep 17 00:00:00 2001 From: wenjing wu <44483146+wuwj6269@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:37:21 -0400 Subject: [PATCH 079/190] Update AGLT2_downtime.yaml --- .../AGLT2/AGLT2_downtime.yaml | 91 ++++++++++++++++++- 1 file changed, 89 insertions(+), 2 deletions(-) diff --git a/topology/University of Michigan/AGLT2/AGLT2_downtime.yaml b/topology/University of Michigan/AGLT2/AGLT2_downtime.yaml index da46dec5e..c353bf559 100644 --- a/topology/University of Michigan/AGLT2/AGLT2_downtime.yaml +++ b/topology/University of Michigan/AGLT2/AGLT2_downtime.yaml @@ -1232,5 +1232,92 @@ Services: - Squid # --------------------------------------------------------- - - +- Class: SCHEDULED + ID: 1760315636 + Description: UPS repair work + Severity: Outage + StartTime: Mar 27, 2024 14:00 +0000 + EndTime: Mar 27, 2024 22:00 +0000 + CreatedTime: Mar 21, 2024 14:32 +0000 + ResourceName: AGLT2_CE_2 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1760316569 + Description: UPS repair work + Severity: Outage + StartTime: Mar 27, 2024 14:00 +0000 + EndTime: Mar 27, 2024 22:00 +0000 + CreatedTime: Mar 21, 2024 14:34 +0000 + ResourceName: AGLT2_SL7 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1760316831 + Description: UPS repair work + Severity: Outage + StartTime: Mar 27, 2024 14:00 +0000 + EndTime: Mar 27, 2024 22:00 +0000 + CreatedTime: Mar 21, 2024 14:34 +0000 + ResourceName: AGLT2_CE_3 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1760317042 + Description: UPS repair work + Severity: Outage + StartTime: Mar 27, 2024 14:00 +0000 + EndTime: Mar 27, 2024 22:00 +0000 + CreatedTime: Mar 21, 2024 14:35 +0000 + ResourceName: AGLT2_XRootD_door + Services: + - XRootD component +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1760317336 + Description: UPS repair work + Severity: Outage + StartTime: Mar 27, 2024 14:00 +0000 + EndTime: Mar 27, 2024 22:00 +0000 + CreatedTime: Mar 21, 2024 14:35 +0000 + ResourceName: AGLT2_SE + Services: + - SRMv2 + - WebDAV +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1760317557 + Description: UPS repair work + Severity: Outage + StartTime: Mar 27, 2024 14:00 +0000 + EndTime: Mar 27, 2024 22:00 +0000 + CreatedTime: Mar 21, 2024 14:35 +0000 + ResourceName: AGLT2-squid-2 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1760317764 + Description: UPS repair work + Severity: Outage + StartTime: Mar 27, 2024 14:00 +0000 + EndTime: Mar 27, 2024 22:00 +0000 + CreatedTime: Mar 21, 2024 14:36 +0000 + ResourceName: AGLT2-squid-3 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1760317985 + Description: UPS repair work + Severity: Outage + StartTime: Mar 27, 2024 14:00 +0000 + EndTime: Mar 27, 2024 22:00 +0000 + CreatedTime: Mar 21, 2024 14:36 +0000 + ResourceName: AGLT2-squid-4 + Services: + - Squid +# --------------------------------------------------------- From 3916dd02d361771985ed09735d6376fc06823777 Mon Sep 17 00:00:00 2001 From: Mats Rynge Date: Thu, 21 Mar 2024 08:04:30 -0700 Subject: [PATCH 080/190] New OSPool AP: pegasus.access-ci.org --- .../Information Sciences Institute/ISI.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/topology/University of Southern California/Information Sciences Institute/ISI.yaml b/topology/University of Southern California/Information Sciences Institute/ISI.yaml index 9e5ad6a76..e4cfdad15 100644 --- a/topology/University of Southern California/Information Sciences Institute/ISI.yaml +++ b/topology/University of Southern California/Information Sciences Institute/ISI.yaml @@ -61,4 +61,23 @@ Resources: hidden: false Tags: - OSPool + Pegasus-ACCESS-CI: + ContactLists: + Administrative Contact: + Primary: + ID: 38cd7e4efcb45e2aff808b98f5f928c96b3a8608 + Name: Mats Rynge + Security Contact: + Primary: + ID: 38cd7e4efcb45e2aff808b98f5f928c96b3a8608 + Name: Mats Rynge + Description: ACCESS Pegasus workflows AP + FQDN: pegasus.access-ci.org + Services: + Submit Node: + Description: ACCESS Pegasus workflows AP + Details: + hidden: false + Tags: + - OSPool SupportCenter: ISI From 538cb2b664f5c18735a34990ff0205c5aade98a7 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Thu, 21 Mar 2024 15:04:23 -0500 Subject: [PATCH 081/190] Add Matt Westphall as an OASIS manager --- virtual-organizations/MIS.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/virtual-organizations/MIS.yaml b/virtual-organizations/MIS.yaml index 6bd40ae0c..0ba114aed 100644 --- a/virtual-organizations/MIS.yaml +++ b/virtual-organizations/MIS.yaml @@ -47,6 +47,8 @@ OASIS: DNs: - /DC=org/DC=cilogon/C=US/O=University of Wisconsin-Madison/CN=Matyas Selmeci A148276 ID: OSG1000002 + - Name: MATTHEW WESTPHALL + ID: OSG1000358 - Name: Tim Theisen DNs: - /DC=org/DC=opensciencegrid/O=Open Science Grid/OU=People/CN=Tim Theisen 1349 From 33bb6e2757e9e761c9f7badf3948489c7ff59588 Mon Sep 17 00:00:00 2001 From: Stefan Piperov Date: Fri, 22 Mar 2024 10:10:32 -0400 Subject: [PATCH 082/190] Update Purdue_downtime.yaml Add downtime for T2_US_Purdue due to EOS upgrades --- .../Purdue CMS/Purdue_downtime.yaml | 143 ++++++++++++++++++ 1 file changed, 143 insertions(+) diff --git a/topology/Purdue University/Purdue CMS/Purdue_downtime.yaml b/topology/Purdue University/Purdue CMS/Purdue_downtime.yaml index 710d371b6..270898dcb 100644 --- a/topology/Purdue University/Purdue CMS/Purdue_downtime.yaml +++ b/topology/Purdue University/Purdue CMS/Purdue_downtime.yaml @@ -1988,3 +1988,146 @@ Services: - CE # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165179 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: Purdue-Bell + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165180 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: Purdue-Brown + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165181 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: Purdue-EOS-SE + Services: + - EOS +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165182 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: Purdue-Hadoop-CE + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165183 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: Purdue-Hadoop-SE-Gridftp + Services: + - GridFtp +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165184 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: Purdue-Halstead + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165185 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: Purdue-Hammer + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165186 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: Purdue-Negishi + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165187 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: Purdue-Rice + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165188 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: T2_US_Purdue_Squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165189 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: T2_US_Purdue_Squid2 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165190 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: US-Purdue BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1761165191 + Description: EOS upgrades + Severity: Outage + StartTime: Mar 26, 2024 10:00 +0000 + EndTime: Mar 26, 2024 22:00 +0000 + CreatedTime: Mar 22, 2024 14:08 +0000 + ResourceName: US-Purdue LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- From d44e463d5eadec8fb9db7822086b7f5a46ab294e Mon Sep 17 00:00:00 2001 From: Ron T Date: Fri, 22 Mar 2024 10:42:35 -0400 Subject: [PATCH 083/190] update stashcache DN --- topology/Penn State University/PSU LIGO/PSU-LIGO.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/Penn State University/PSU LIGO/PSU-LIGO.yaml b/topology/Penn State University/PSU LIGO/PSU-LIGO.yaml index ae9361d4a..3c6c29a7d 100644 --- a/topology/Penn State University/PSU LIGO/PSU-LIGO.yaml +++ b/topology/Penn State University/PSU LIGO/PSU-LIGO.yaml @@ -55,7 +55,7 @@ Resources: ID: e1d8f7051a42e878d9aca9c57083ffa4ccfd115e FQDN: stashcache.gwave.ics.psu.edu - DN: /C=US/ST=Pennsylvania/O=The Pennsylvania State University/OU=ICDS/CN=stashcache.gwave.ics.psu.edu + DN: /DC=org/DC=incommon/C=US/ST=Pennsylvania/O=The Pennsylvania State University/CN=stashcache.gwave.ics.psu.edu Services: XRootD cache server: Description: Cache server From 2617bae603bac4d979480be70708d06fbd56472d Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Fri, 22 Mar 2024 13:00:32 -0500 Subject: [PATCH 084/190] Remove unnecessary credential section We can add this back if they start submitting glideins and we get a token issuer --- virtual-organizations/SAGE.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/virtual-organizations/SAGE.yaml b/virtual-organizations/SAGE.yaml index 49d56528f..a908aef02 100644 --- a/virtual-organizations/SAGE.yaml +++ b/virtual-organizations/SAGE.yaml @@ -14,10 +14,6 @@ Contacts: VO Manager: - ID: OSG1000162 Name: Fabio Andrijauskas -Credentials: - TokenIssuers: - - URL: - DefaultUnixUser: Disable: false FieldsOfScience: PrimaryFields: From 88fbf3de43d04c8222bce61ce6005fbffecf9ec3 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Fri, 22 Mar 2024 13:01:50 -0500 Subject: [PATCH 085/190] Fix whitespace issues --- virtual-organizations/SAGE.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/virtual-organizations/SAGE.yaml b/virtual-organizations/SAGE.yaml index a908aef02..f8c0ef33b 100644 --- a/virtual-organizations/SAGE.yaml +++ b/virtual-organizations/SAGE.yaml @@ -4,16 +4,16 @@ Community: The SAGE VO will support users and experiments from SAGE project. Contacts: Administrative Contact: - ID: OSG1000162 - Name: Fabio Andrijauskas + Name: Fabio Andrijauskas Security Contact: - ID: OSG1000162 - Name: Fabio Andrijauskas + Name: Fabio Andrijauskas Sponsors: - ID: c412f5f57dca8fe5c73fb3bc4e86bcf243e9edf7 Name: Frank Wuerthwein VO Manager: - ID: OSG1000162 - Name: Fabio Andrijauskas + Name: Fabio Andrijauskas Disable: false FieldsOfScience: PrimaryFields: @@ -34,4 +34,3 @@ DataFederations: - NEBRASKA_NRP_OSDF_ORIGIN AllowedCaches: - ANY - \ No newline at end of file From 073befd798ac1a0b1ee5eba5f9c259f8452b036d Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Fri, 22 Mar 2024 13:20:27 -0500 Subject: [PATCH 086/190] Flesh out additional details about Sage --- virtual-organizations/SAGE.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/virtual-organizations/SAGE.yaml b/virtual-organizations/SAGE.yaml index f8c0ef33b..ed19eebfe 100644 --- a/virtual-organizations/SAGE.yaml +++ b/virtual-organizations/SAGE.yaml @@ -1,4 +1,6 @@ -AppDescription: This VO supports multiple sciences on SAGE +--- +AppDescription: > + Distributed software-defined sensor network enabling AI at the edge CertificateOnly: false Community: The SAGE VO will support users and experiments from SAGE project. Contacts: @@ -20,6 +22,7 @@ FieldsOfScience: - Multi-Science Community ID: 237 LongName: SAGE multiple sciences origin +PrimaryURL: https://sagecontinuum.org/ DataFederations: StashCache: Namespaces: From bdb24a9bc5dc63209888a76880113613fb2ed042 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Fri, 22 Mar 2024 13:26:25 -0500 Subject: [PATCH 087/190] Fix capitalization for Sage --- virtual-organizations/{SAGE.yaml => Sage.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename virtual-organizations/{SAGE.yaml => Sage.yaml} (100%) diff --git a/virtual-organizations/SAGE.yaml b/virtual-organizations/Sage.yaml similarity index 100% rename from virtual-organizations/SAGE.yaml rename to virtual-organizations/Sage.yaml From e780932a361e0e5c76c3cce53c277ac2aad19f68 Mon Sep 17 00:00:00 2001 From: Mats Rynge Date: Mon, 25 Mar 2024 08:35:42 -0700 Subject: [PATCH 088/190] New project: SUNYGeneseo_CIT --- projects/SUNYGeneseo_CIT.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 projects/SUNYGeneseo_CIT.yaml diff --git a/projects/SUNYGeneseo_CIT.yaml b/projects/SUNYGeneseo_CIT.yaml new file mode 100644 index 000000000..4a2f4e025 --- /dev/null +++ b/projects/SUNYGeneseo_CIT.yaml @@ -0,0 +1,5 @@ +Description: Campus support for users at SUNY Geneseo +FieldOfScience: Computer & Information Sciences +Organization: State University of New York College at Geneseo +Department: Computing & Information Technology +PIName: David Warden From b7344ad99d06325c9c2cce1903cac648ed13f4a3 Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Mon, 25 Mar 2024 11:31:32 -0500 Subject: [PATCH 089/190] Create UCSD_Politis.yaml --- projects/UCSD_Politis.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 projects/UCSD_Politis.yaml diff --git a/projects/UCSD_Politis.yaml b/projects/UCSD_Politis.yaml new file mode 100644 index 000000000..82816665a --- /dev/null +++ b/projects/UCSD_Politis.yaml @@ -0,0 +1,11 @@ +Description: > + Bootstrap hypothesis testing methods for time series - + we are trying to compute the rejection probabilities of our hypothesis + testing method as a measure of their efficacy. This requires generating + several samples of time series for a given sample size and hyperparameter + specification and running our test repeatedly to compute the empirical + rejection probability. This is done over several sample sizes and hyperparameter specs. +Department: Department of Mathematics +FieldOfScience: Mathematics and Statistics +Organization: University of California, San Diego +PIName: Dimitris N Politis From 6344fdcdc093901bbcad68686a97714edb91269e Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Mon, 25 Mar 2024 17:04:00 -0500 Subject: [PATCH 090/190] Add YAML extension --- projects/{UWMilwaukee_Yoon => UWMilwaukee_Yoon.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename projects/{UWMilwaukee_Yoon => UWMilwaukee_Yoon.yml} (100%) diff --git a/projects/UWMilwaukee_Yoon b/projects/UWMilwaukee_Yoon.yml similarity index 100% rename from projects/UWMilwaukee_Yoon rename to projects/UWMilwaukee_Yoon.yml From 3a1cc67e0f82e16b7aa063cc8763f1ee97ea8dd3 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Mon, 25 Mar 2024 17:03:08 -0500 Subject: [PATCH 091/190] Fix multi-line formatting --- projects/UCSD_Bradic.yml | 6 ++++-- projects/UWMilwaukee_Yoon.yml | 10 ++++++---- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/projects/UCSD_Bradic.yml b/projects/UCSD_Bradic.yml index 4a3a10fa4..34bcd677c 100644 --- a/projects/UCSD_Bradic.yml +++ b/projects/UCSD_Bradic.yml @@ -1,6 +1,8 @@ Department: Department of Mathematical Sciences & Halicioglu Data Science Institute -Description: Causal Inference and Machine Learning. Specifically, we are interested - in finding optimal individualized treatment rules and provide theoretical guarantees. +Description: > + Causal Inference and Machine Learning. Specifically, we are + interested in finding optimal individualized treatment rules and + provide theoretical guarantees. FieldOfScience: Mathematical Sciences Organization: University of California, San Diego PIName: Jelena Bradic diff --git a/projects/UWMilwaukee_Yoon.yml b/projects/UWMilwaukee_Yoon.yml index 7442de4ad..a32663ca0 100644 --- a/projects/UWMilwaukee_Yoon.yml +++ b/projects/UWMilwaukee_Yoon.yml @@ -1,8 +1,10 @@ Department: Department of Economics -Description: Developing new estimation methods for structural economic models. To - evaluate the performance of the new method, Monte Carlo simulations are used to - solve constrained minimization problems. The method is used for estimating empirical - games and other structural models with strategic interactions. +Description: > + Developing new estimation methods for structural economic models. To + evaluate the performance of the new method, Monte Carlo simulations + are used to solve constrained minimization problems. The method is + used for estimating empirical games and other structural models with + strategic interactions. FieldOfScience: Economics Organization: University of Wisconsin-Milwaukee PIName: Jangsu Yoon From cebcf2116c819ced77bb8b59bed45f2d354d3996 Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Tue, 26 Mar 2024 01:24:09 -0500 Subject: [PATCH 092/190] Create CPSC_5520.yaml --- projects/CPSC_5520.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 projects/CPSC_5520.yaml diff --git a/projects/CPSC_5520.yaml b/projects/CPSC_5520.yaml new file mode 100644 index 000000000..759c00bb3 --- /dev/null +++ b/projects/CPSC_5520.yaml @@ -0,0 +1,7 @@ +Description: > + Teaching a distributed systems course. Assignments will be at-scale applications including + a parallel video rendering pipeline, a genome analysis application, and a text analysis workflow +Department: Computer Science +FieldOfScience: Computer and Information Science +Organization: Seattle University +PIName: Nate Kremer-Herman From 116d96195560ee11b6b976d1f99703bfcc1200c1 Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Tue, 26 Mar 2024 01:28:23 -0500 Subject: [PATCH 093/190] Create NMSU_Sievert.yaml --- projects/NMSU_Sievert.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 projects/NMSU_Sievert.yaml diff --git a/projects/NMSU_Sievert.yaml b/projects/NMSU_Sievert.yaml new file mode 100644 index 000000000..0e62a0cd1 --- /dev/null +++ b/projects/NMSU_Sievert.yaml @@ -0,0 +1,5 @@ +Description: Theoretical nuclear physics research. +Department: Physics +FieldOfScience: Physics +Organization: New Mexico State University +PIName: Matthew Sievert From 2d7a9072e6376c99221c500c36ce17a2a7936b0f Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Tue, 26 Mar 2024 01:33:33 -0500 Subject: [PATCH 094/190] Create Caltech_Bouma.yaml --- projects/Caltech_Bouma.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 projects/Caltech_Bouma.yaml diff --git a/projects/Caltech_Bouma.yaml b/projects/Caltech_Bouma.yaml new file mode 100644 index 000000000..0d7918d09 --- /dev/null +++ b/projects/Caltech_Bouma.yaml @@ -0,0 +1,5 @@ +Description: Exoplanet and stellar astrophysics research +Department: Division of Physics, Mathematics and Astronomy +FieldOfScience: Astrophysics +Organization: California Institute of Technology +PIName: Luke Bouma From 47780ee947da72a8791f97ab80b360362e43b469 Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Tue, 26 Mar 2024 01:38:37 -0500 Subject: [PATCH 095/190] Create Columbia_Reichman.yaml --- projects/Columbia_Reichman.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 projects/Columbia_Reichman.yaml diff --git a/projects/Columbia_Reichman.yaml b/projects/Columbia_Reichman.yaml new file mode 100644 index 000000000..c09d58cb5 --- /dev/null +++ b/projects/Columbia_Reichman.yaml @@ -0,0 +1,10 @@ +Description: > + In this work, we will develop a coarse-grained semiclassical method + to simulate quantum dynamics of coupled electron-phonon systems. + First, we will benchmark our method against exact numerical approaches and + then combine with ab-initio calculations. Using our approach, we will also + investigate quantum dynamical effects in materials strongly coupled to quantized light. +Department: Chemistry Department +FieldOfScience: Chemistry +Organization: Columbia University +PIName: David Reichman From 952dd85d3b1b2bb9d11e9d756afd5362b2290927 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 26 Mar 2024 12:29:18 -0700 Subject: [PATCH 096/190] fixing hostname fixing hostname --- .../University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml index f2b8bec0d..706f1ad65 100644 --- a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml +++ b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml @@ -49,8 +49,8 @@ Resources: Primary: Name: Garhan Attebury ID: e86d60dc841731aebfd879d5883d66ebab20cbd2 - FQDN: hcc-nrdstor-osdf.unl.edu - DN: /CN=hcc-nrdstor-osdf.unl.edu + FQDN: unl-hcc-nrdstor-origin.nationalresearchplatform.org + DN: /DC=org/DC=incommon/C=US/ST=California/O=University of California, San Diego/CN=unl-hcc-nrdstor-origin.nationalresearchplatform.org Services: XRootD origin server: # Description is a brief description of the service From 58b9cad7b18ae9290c46ed7cbab177837cf40bb5 Mon Sep 17 00:00:00 2001 From: Paschos Date: Tue, 26 Mar 2024 17:03:06 -0500 Subject: [PATCH 097/190] Create KOTO.yaml Adding KOTO project in topology --- projects/KOTO.yaml | 61 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 projects/KOTO.yaml diff --git a/projects/KOTO.yaml b/projects/KOTO.yaml new file mode 100644 index 000000000..a9a09032b --- /dev/null +++ b/projects/KOTO.yaml @@ -0,0 +1,61 @@ +# Description is a human-readable description of what the project is about +# it can be multiple lines as long as each line is indented. +Description: >- +KOTO Collaboration OSG project on ap23 +# Department is the department of the project, e.g. "Physics" +Department: Physics +# FieldOfScience is a more specific description, e.g. "High Energy Physics" +FieldOfScience: High Energy Physics +# Organization is the organization where the project is hosted, e.g. "University of California, San Diego" +Organization: University of Chicago +# PIName is the prinicipal investigator for the project +PIName: Yau Wah + +Sponsor: + ### If this is an OSG Connect project, uncomment this CampusGrid block + # CampusGrid: + # Name: OSG Connect + + ### Or if this is an XSEDE project, uncomment this CampusGrid block + # CampusGrid: + # Name: OSG-XSEDE + + ### Or if this project is sponsored by some other campus grid, uncomment this + ### CampusGrid block and replace with the name of the campus grid; + ### look at the list in projects/_CAMPUS_GRIDS.yaml for the specific spelling + # CampusGrid: + # Name: + + ### Or if this project is sponsored by a VO, uncomment this VirtualOrganization block + ### and replace with the name of the virtual organization; this must match + ### one of the file names in the virtual-organizations/ directory (minus the .yaml extension) + VirtualOrganization: + Name: OSG + + +### Uncomment the ResourceAllocations block if this project can make use of +### one or more XRAC (XSEDE) or other HPC allocations. +### +### Contact the Software Team for assistance in filling in these values. +# ResourceAllocations: + +##### Type is how the allocation was obtained: "XRAC" for allocations through +##### XSEDE or "Other" for allocations directly through the site. +# - Type: Other + +####### SubmitResources is a list of Submit Nodes (Access Points) that users of +####### the project can submit from. There must be at least one; each line must +####### refer to a Topology Resource. + SubmitResources: + - UChicago_OSGConnect_ap23 +# - UChicago_OSGConnect_login05 + +####### ExecuteResourceGroups is a list of what sites this allocation +####### corresponds to and what their local allocation is at that site. +####### There must be at least one. +# ExecuteResourceGroups: +########### GroupName is a Topology Resource Group that contains the CE of the site. +# - GroupName: TACC-Stampede2 +########### LocalAllocationID is the user's allocation on that site (e.g. for +########### SLURM, what goes after the `-A`) for the job +# LocalAllocationID: MyAllocation From 705033aa544a380b1b2b77d77bf9d5c534502bc5 Mon Sep 17 00:00:00 2001 From: Paschos Date: Wed, 27 Mar 2024 10:52:24 -0500 Subject: [PATCH 098/190] Update KOTO.yaml --- projects/KOTO.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/KOTO.yaml b/projects/KOTO.yaml index a9a09032b..0ae5e4584 100644 --- a/projects/KOTO.yaml +++ b/projects/KOTO.yaml @@ -1,13 +1,13 @@ # Description is a human-readable description of what the project is about # it can be multiple lines as long as each line is indented. -Description: >- +Description: KOTO Collaboration OSG project on ap23 # Department is the department of the project, e.g. "Physics" Department: Physics # FieldOfScience is a more specific description, e.g. "High Energy Physics" FieldOfScience: High Energy Physics # Organization is the organization where the project is hosted, e.g. "University of California, San Diego" -Organization: University of Chicago +Organization: The University of Chicago # PIName is the prinicipal investigator for the project PIName: Yau Wah From 1792990b089393e98ddc2dbc910761ea699d071b Mon Sep 17 00:00:00 2001 From: mwestphall Date: Wed, 27 Mar 2024 11:59:15 -0500 Subject: [PATCH 099/190] Update projects/KOTO.yaml --- projects/KOTO.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/KOTO.yaml b/projects/KOTO.yaml index 0ae5e4584..b617aa1e0 100644 --- a/projects/KOTO.yaml +++ b/projects/KOTO.yaml @@ -1,6 +1,6 @@ # Description is a human-readable description of what the project is about # it can be multiple lines as long as each line is indented. -Description: +Description: KOTO Collaboration OSG project on ap23 KOTO Collaboration OSG project on ap23 # Department is the department of the project, e.g. "Physics" Department: Physics From 43424158d18584c1ce9bcd0add34e1d98842cf89 Mon Sep 17 00:00:00 2001 From: mwestphall Date: Wed, 27 Mar 2024 11:59:21 -0500 Subject: [PATCH 100/190] Update projects/KOTO.yaml --- projects/KOTO.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/projects/KOTO.yaml b/projects/KOTO.yaml index b617aa1e0..f59ee1cbe 100644 --- a/projects/KOTO.yaml +++ b/projects/KOTO.yaml @@ -1,7 +1,6 @@ # Description is a human-readable description of what the project is about # it can be multiple lines as long as each line is indented. Description: KOTO Collaboration OSG project on ap23 -KOTO Collaboration OSG project on ap23 # Department is the department of the project, e.g. "Physics" Department: Physics # FieldOfScience is a more specific description, e.g. "High Energy Physics" From a96f2e9e67267ad00b8f934e885ee2a71d500c2f Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 27 Mar 2024 13:16:36 -0700 Subject: [PATCH 101/190] Add downtime for Stashcache-UofA due to overloaded Add downtime for Stashcache-UofA due to overloaded --- .../AmsterdamPRPCachingInfrastructure_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure_downtime.yaml b/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure_downtime.yaml index 87d673dcd..6a1bb7e7c 100644 --- a/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure_downtime.yaml +++ b/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure_downtime.yaml @@ -42,3 +42,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1765705637 + Description: overloaded + Severity: Outage + StartTime: Mar 27, 2024 19:30 +0000 + EndTime: Apr 01, 2024 19:30 +0000 + CreatedTime: Mar 27, 2024 20:16 +0000 + ResourceName: Stashcache-UofA + Services: + - XRootD cache server +# --------------------------------------------------------- From 599f9fa2fd35fbaef6f5dd53eb1207fc2c4a9c90 Mon Sep 17 00:00:00 2001 From: Mats Rynge Date: Wed, 27 Mar 2024 13:46:27 -0700 Subject: [PATCH 102/190] New project: MSU_RCI --- projects/MSU_RCI.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 projects/MSU_RCI.yaml diff --git a/projects/MSU_RCI.yaml b/projects/MSU_RCI.yaml new file mode 100644 index 000000000..780c879aa --- /dev/null +++ b/projects/MSU_RCI.yaml @@ -0,0 +1,5 @@ +Description: Montana State University - RCI staff +FieldOfScience: Computer Science +Organization: Montana State University +Department: Research Cyberinfrastructure +PIName: Alex Salois From bb3796e5a4616fab52df4fc61d4a0ca4a9b4cb9f Mon Sep 17 00:00:00 2001 From: mwestphall Date: Wed, 27 Mar 2024 17:01:44 -0500 Subject: [PATCH 103/190] Uncomment "ResourceAllocations" --- projects/KOTO.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/KOTO.yaml b/projects/KOTO.yaml index f59ee1cbe..f88faceda 100644 --- a/projects/KOTO.yaml +++ b/projects/KOTO.yaml @@ -36,7 +36,7 @@ Sponsor: ### one or more XRAC (XSEDE) or other HPC allocations. ### ### Contact the Software Team for assistance in filling in these values. -# ResourceAllocations: +ResourceAllocations: ##### Type is how the allocation was obtained: "XRAC" for allocations through ##### XSEDE or "Other" for allocations directly through the site. From f10324074172ffe8ef5db9b1756c935aaf35205a Mon Sep 17 00:00:00 2001 From: mwestphall Date: Thu, 28 Mar 2024 10:13:59 -0500 Subject: [PATCH 104/190] Update projects/KOTO.yaml --- projects/KOTO.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/KOTO.yaml b/projects/KOTO.yaml index f88faceda..0a0dba9b6 100644 --- a/projects/KOTO.yaml +++ b/projects/KOTO.yaml @@ -40,7 +40,7 @@ ResourceAllocations: ##### Type is how the allocation was obtained: "XRAC" for allocations through ##### XSEDE or "Other" for allocations directly through the site. -# - Type: Other + - Type: Other ####### SubmitResources is a list of Submit Nodes (Access Points) that users of ####### the project can submit from. There must be at least one; each line must From f9b30885d974e0f7b841bdfb7c440194d6936d8d Mon Sep 17 00:00:00 2001 From: Matthew Westphall Date: Thu, 28 Mar 2024 10:42:07 -0500 Subject: [PATCH 105/190] remove KOTO resourceallocations for now --- projects/KOTO.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/KOTO.yaml b/projects/KOTO.yaml index 0a0dba9b6..e988bef0f 100644 --- a/projects/KOTO.yaml +++ b/projects/KOTO.yaml @@ -36,17 +36,17 @@ Sponsor: ### one or more XRAC (XSEDE) or other HPC allocations. ### ### Contact the Software Team for assistance in filling in these values. -ResourceAllocations: +#ResourceAllocations: ##### Type is how the allocation was obtained: "XRAC" for allocations through ##### XSEDE or "Other" for allocations directly through the site. - - Type: Other +# - Type: Other ####### SubmitResources is a list of Submit Nodes (Access Points) that users of ####### the project can submit from. There must be at least one; each line must ####### refer to a Topology Resource. - SubmitResources: - - UChicago_OSGConnect_ap23 +# SubmitResources: +# - UChicago_OSGConnect_ap23 # - UChicago_OSGConnect_login05 ####### ExecuteResourceGroups is a list of what sites this allocation From baab09e3900a7735d19a2c63df8996e702952eb8 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 28 Mar 2024 10:18:13 -0700 Subject: [PATCH 106/190] adding - DN: /CN=hcc-mon2.unl.edu to /igwn/ligo improving OSDF monitoring --- virtual-organizations/LIGO.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/virtual-organizations/LIGO.yaml b/virtual-organizations/LIGO.yaml index 295d2ab23..f711b37fb 100644 --- a/virtual-organizations/LIGO.yaml +++ b/virtual-organizations/LIGO.yaml @@ -148,6 +148,7 @@ DataFederations: AllowedCaches: *ligo-allowed-caches - Path: /igwn/ligo Authorizations: + - DN: /CN=hcc-mon2.unl.edu - FQAN: /osg/ligo - FQAN: /virgo - FQAN: /virgo/virgo From 1f9582683a197e66b2cfc60fa11be24acb0e39f4 Mon Sep 17 00:00:00 2001 From: Rachel Lombardi <37351287+rachellombardi@users.noreply.github.com> Date: Thu, 28 Mar 2024 13:14:37 -0500 Subject: [PATCH 107/190] Create Michigan_Viswanathan.yaml --- projects/Michigan_Viswanathan.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 projects/Michigan_Viswanathan.yaml diff --git a/projects/Michigan_Viswanathan.yaml b/projects/Michigan_Viswanathan.yaml new file mode 100644 index 000000000..10994ab9f --- /dev/null +++ b/projects/Michigan_Viswanathan.yaml @@ -0,0 +1,6 @@ +Department: Engineering +Description: 'Research Interests: Electric aviation, Electric vehicles, Batteries, + Scientific machine learning' +FieldOfScience: Engineering +Organization: University of Michigan +PIName: Venkat Viswanathan From 3016ce3d994c8438efeb4d754c24952f4f38a477 Mon Sep 17 00:00:00 2001 From: mwestphall Date: Thu, 28 Mar 2024 13:41:56 -0500 Subject: [PATCH 108/190] Update projects/Michigan_Viswanathan.yaml --- projects/Michigan_Viswanathan.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/Michigan_Viswanathan.yaml b/projects/Michigan_Viswanathan.yaml index 10994ab9f..64b96b9a6 100644 --- a/projects/Michigan_Viswanathan.yaml +++ b/projects/Michigan_Viswanathan.yaml @@ -1,6 +1,6 @@ Department: Engineering -Description: 'Research Interests: Electric aviation, Electric vehicles, Batteries, - Scientific machine learning' +Description: > + Research Interests: Electric aviation, Electric vehicles, Batteries, Scientific machine learning FieldOfScience: Engineering Organization: University of Michigan PIName: Venkat Viswanathan From 180afe78e273f38d35da9ff59b48a86115cb0838 Mon Sep 17 00:00:00 2001 From: hzhu16 Date: Thu, 28 Mar 2024 15:04:00 -0500 Subject: [PATCH 109/190] Create Neurodesk.yaml --- virtual-organizations/Neurodesk.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 virtual-organizations/Neurodesk.yaml diff --git a/virtual-organizations/Neurodesk.yaml b/virtual-organizations/Neurodesk.yaml new file mode 100644 index 000000000..f8d1cace4 --- /dev/null +++ b/virtual-organizations/Neurodesk.yaml @@ -0,0 +1,8 @@ +AppDescription: A flexible and scalable data analysis environment for reproducible neuroimaging with Neurodesk. +CertificateOnly: false +Community: Neurodesk +LongName: Neurodesk +OASIS: + OASISRepoURLs: + - http://203.101.226.164/cvmfs/neurodesk.ardc.edu.au + UseOASIS: true From fa2da405dd756d626c9496350774b73335c875f6 Mon Sep 17 00:00:00 2001 From: Tim Cartwright Date: Thu, 28 Mar 2024 15:22:17 -0500 Subject: [PATCH 110/190] Added contacts for Michigan St. FD #74167 --- .../MSU ICER/MSU-DataMachine.yaml | 60 +++++++------------ 1 file changed, 22 insertions(+), 38 deletions(-) diff --git a/topology/Michigan State University/MSU ICER/MSU-DataMachine.yaml b/topology/Michigan State University/MSU ICER/MSU-DataMachine.yaml index 8d26d8295..5d93996f3 100644 --- a/topology/Michigan State University/MSU ICER/MSU-DataMachine.yaml +++ b/topology/Michigan State University/MSU ICER/MSU-DataMachine.yaml @@ -22,53 +22,37 @@ Resources: Active: true # Description is a long description of the resource; may be multiple lines Description: Hosted CE serving MSU - # ContactLists contain information about people to contact regarding this resource. - # The "ID" is a hash of their email address available at https://topology.opensciencegrid.org/miscuser/xml - # If you cannot find the contact above XML, please register the contact: - # https://opensciencegrid.org/docs/common/registration/#registering-contacts + ContactLists: - # Administrative Contacts are persons or groups of people (i.e., - # mailing lists) that are directly responsible for the - # maintenance of the resource Administrative Contact: Primary: Name: Jeffrey Michael Dost ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba - # Secondary: - # Name: - # ID: - # Tertiary: - # Name: - # ID: - - # Security Contact are persons or groups of people (i.e., - # mailing lists) that are responsible for handling security - # issues related to the resource Security Contact: Primary: Name: Jeffrey Michael Dost ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba - # Secondary: - # Name: - # ID: - # Tertiary: - # Name: - # ID: - - # Site contact (optional) are persons or groups of people (i.e., - # mailing lists) that are generally responsible for a site's - # relationship with the OSG (e.g., principal investigators, - # local administrator contact for OSG Hosted CEs) - # Site Contact: - # Primary: - # Name: - # ID: - # Secondary: - # Name: - # ID: - # Tertiary: - # Name: - # ID: + Local Executive Contact: + Primary: + Name: Adam Pitcher + ID: OSG1000663 + Secondary: + Name: Brian OShea + ID: OSG1000676 + Local Operational Contact: + Primary: + Name: Thomas Holcomb + ID: OSG1000662 + Secondary: + Name: Kelly Climer + ID: OSG1000672 + Local Security Contact: + Primary: + Name: Thomas Holcomb + ID: OSG1000662 + Secondary: + Name: Kelly Climer + ID: OSG1000672 # FQDN is the fully qualified domain name of the host running this resource FQDN: msu-datamachine-ce1.svc.opensciencegrid.org From 44f1df551bc616ac8c6f7acdf12cbbdca8d0eadb Mon Sep 17 00:00:00 2001 From: mwestphall Date: Fri, 29 Mar 2024 10:49:25 -0500 Subject: [PATCH 111/190] Add mgm.hpc4l.org to HPC4L.yaml --- .../HPC For Lebanon/HPC4L.yaml | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/topology/American University of Beirut/HPC For Lebanon/HPC4L.yaml b/topology/American University of Beirut/HPC For Lebanon/HPC4L.yaml index 01546cd52..f709a147e 100644 --- a/topology/American University of Beirut/HPC For Lebanon/HPC4L.yaml +++ b/topology/American University of Beirut/HPC For Lebanon/HPC4L.yaml @@ -61,6 +61,35 @@ Resources: KSI2KMin: 0 StorageCapacityMax: 8.2 StorageCapacityMin: 1 + HPC4L-SE-2: + Active: false + ContactLists: + Administrative Contact: + Primary: + ID: OSG1000629 + Name: Saadallah si Itani + Security Contact: + Primary: + ID: OSG1000629 + Name: Saadallah si Itani + Description: EOS-based SE for the HPC4L effort + FQDN: mgm.hpc4l.org + Services: + EOS: + Description: EOS Storage Element + VOOwnership: + CMS: 100 + WLCGInformation: + APELNormalFactor: 0 + AccountingName: T2_LB_HPC4L + HEPSPEC: 0 + InteropAccounting: true + InteropBDII: true + InteropMonitoring: true + KSI2KMax: 0 + KSI2KMin: 0 + StorageCapacityMax: 8.2 + StorageCapacityMin: 1 HPC4L-Squid: Active: false ContactLists: From 173501602b84b09d2692997a17b7f4a5e57ba50c Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 1 Apr 2024 12:24:59 -0700 Subject: [PATCH 112/190] Add downtime for Stashcache-KISTI due to overloaded Add downtime for Stashcache-KISTI due to overloaded --- .../KISTIPRPCachingInfrastructure_downtime.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/topology/Korea Institute of Science and Technology Information/T3_KR_KISTI/KISTIPRPCachingInfrastructure_downtime.yaml b/topology/Korea Institute of Science and Technology Information/T3_KR_KISTI/KISTIPRPCachingInfrastructure_downtime.yaml index 363da97ba..7a8df6f25 100644 --- a/topology/Korea Institute of Science and Technology Information/T3_KR_KISTI/KISTIPRPCachingInfrastructure_downtime.yaml +++ b/topology/Korea Institute of Science and Technology Information/T3_KR_KISTI/KISTIPRPCachingInfrastructure_downtime.yaml @@ -8,3 +8,15 @@ ResourceName: Stashcache-KISTI Services: - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1769994104 + Description: overloaded + Severity: Outage + StartTime: Apr 01, 2024 19:30 +0000 + EndTime: Apr 01, 2024 19:30 +0000 + CreatedTime: Apr 10, 2024 19:23 +0000 + ResourceName: Stashcache-KISTI + Services: + - XRootD cache server +# --------------------------------------------------------- From 8b4e15f205bd75508504bfaa822f25b2c8437466 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 1 Apr 2024 12:46:14 -0700 Subject: [PATCH 113/190] Add downtime for INFN_CNAF_OSDF_CACHE due to overloaded Add downtime for INFN_CNAF_OSDF_CACHE due to overloaded --- .../INFN-T1CachingInfrastructure_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/INFN-T1/INFN-T1/INFN-T1CachingInfrastructure_downtime.yaml b/topology/INFN-T1/INFN-T1/INFN-T1CachingInfrastructure_downtime.yaml index 8e4f9e3da..0ebae5aec 100644 --- a/topology/INFN-T1/INFN-T1/INFN-T1CachingInfrastructure_downtime.yaml +++ b/topology/INFN-T1/INFN-T1/INFN-T1CachingInfrastructure_downtime.yaml @@ -20,3 +20,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1770007352 + Description: overloaded + Severity: Outage + StartTime: Apr 01, 2024 19:30 +0000 + EndTime: May 01, 2024 06:30 +0000 + CreatedTime: Apr 01, 2024 19:45 +0000 + ResourceName: INFN_CNAF_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- From cfd4d67e249663884ceacb90564e90ca6e57bad1 Mon Sep 17 00:00:00 2001 From: Colby Walsworth Date: Mon, 1 Apr 2024 13:46:11 -0700 Subject: [PATCH 114/190] Create UNR-CC_downtime.yaml --- .../University of Nevada Reno/UNR-CC_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 topology/Nevada System of Higher Education/University of Nevada Reno/UNR-CC_downtime.yaml diff --git a/topology/Nevada System of Higher Education/University of Nevada Reno/UNR-CC_downtime.yaml b/topology/Nevada System of Higher Education/University of Nevada Reno/UNR-CC_downtime.yaml new file mode 100644 index 000000000..fed2cf942 --- /dev/null +++ b/topology/Nevada System of Higher Education/University of Nevada Reno/UNR-CC_downtime.yaml @@ -0,0 +1,11 @@ +- Class: UNSCHEDULED + ID: 1770042331 + Description: SSH access not working + Severity: Outage + StartTime: Apr 01, 2024 20:43 +0000 + EndTime: Apr 01, 2026 20:43 +0000 + CreatedTime: Apr 01, 2024 20:43 +0000 + ResourceName: UNR-CC-CE1 + Services: + - CE +# --------------------------------------------------------- From ee5ab69dd8fd7fd74c721481f996c81323b79478 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Tue, 2 Apr 2024 10:25:34 -0500 Subject: [PATCH 115/190] Fix extension --- projects/{UCSD_Bradic.yml => UCSD_Bradic.yaml} | 0 projects/{UWMilwaukee_Yoon.yml => UWMilwaukee_Yoon.yaml} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename projects/{UCSD_Bradic.yml => UCSD_Bradic.yaml} (100%) rename projects/{UWMilwaukee_Yoon.yml => UWMilwaukee_Yoon.yaml} (100%) diff --git a/projects/UCSD_Bradic.yml b/projects/UCSD_Bradic.yaml similarity index 100% rename from projects/UCSD_Bradic.yml rename to projects/UCSD_Bradic.yaml diff --git a/projects/UWMilwaukee_Yoon.yml b/projects/UWMilwaukee_Yoon.yaml similarity index 100% rename from projects/UWMilwaukee_Yoon.yml rename to projects/UWMilwaukee_Yoon.yaml From 334dec487786737718a1d341596552f8c566be40 Mon Sep 17 00:00:00 2001 From: Mats Rynge Date: Tue, 2 Apr 2024 09:43:43 -0700 Subject: [PATCH 116/190] New project: NASA_Nasipak --- projects/NASA_Nasipak.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 projects/NASA_Nasipak.yaml diff --git a/projects/NASA_Nasipak.yaml b/projects/NASA_Nasipak.yaml new file mode 100644 index 000000000..215dd73ae --- /dev/null +++ b/projects/NASA_Nasipak.yaml @@ -0,0 +1,8 @@ +Department: Goddard Space Flight Center +Description: > + Gravitational wave modeling, specifically the modeling the + dynamics and gravitational waves of black hole binaries known as + extreme-mass-ratio inspirals for future milliHertz detectors. +FieldOfScience: Astronomy +Organization: National Aeronautics and Space Administration +PIName: Zachary Nasipak From 64a2a9c6ac919040b0b52abc27f75d9f3cb304aa Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 2 Apr 2024 10:49:31 -0700 Subject: [PATCH 117/190] adding ncar origin adding ncar origin --- .../FACILITY.yaml | 1 + .../NCAR/NCAR-OSDF.yaml | 29 +++++++++++++++++++ .../NCAR/SITE.yaml | 7 +++++ 3 files changed, 37 insertions(+) create mode 100644 topology/National Center for Atmospheric Research/FACILITY.yaml create mode 100644 topology/National Center for Atmospheric Research/NCAR/NCAR-OSDF.yaml create mode 100644 topology/National Center for Atmospheric Research/NCAR/SITE.yaml diff --git a/topology/National Center for Atmospheric Research/FACILITY.yaml b/topology/National Center for Atmospheric Research/FACILITY.yaml new file mode 100644 index 000000000..c6eea5eb0 --- /dev/null +++ b/topology/National Center for Atmospheric Research/FACILITY.yaml @@ -0,0 +1 @@ +ID: 10217 diff --git a/topology/National Center for Atmospheric Research/NCAR/NCAR-OSDF.yaml b/topology/National Center for Atmospheric Research/NCAR/NCAR-OSDF.yaml new file mode 100644 index 000000000..9c658e484 --- /dev/null +++ b/topology/National Center for Atmospheric Research/NCAR/NCAR-OSDF.yaml @@ -0,0 +1,29 @@ +Production: true +SupportCenter: National Center for Atmospheric Research +GroupDescription: National Center for Atmospheric Research +GroupID: 1367 + +Resources: + NCAR_OSDF_ORIGIN: + Active: true + Description: NCAR + ID: 10369 + ContactLists: + Administrative Contact: + Primary: + Name: Fabio Andrijauskas + ID: OSG1000162 + Secondary: + ID: OSG1000162 + Name: Fabio Andrijauskas + Security Contact: + Primary: + Name: Fabio Andrijauskas + ID: OSG1000162 + DN: /CN=ncar-osdf01.hpc.ucar.edu + FQDN: ncar-osdf01.hpc.ucar.edu + Services: + XRootD origin server: + Description: NCAR OSDF Origin + AllowedVOs: + - ANY \ No newline at end of file diff --git a/topology/National Center for Atmospheric Research/NCAR/SITE.yaml b/topology/National Center for Atmospheric Research/NCAR/SITE.yaml new file mode 100644 index 000000000..2e96e55a4 --- /dev/null +++ b/topology/National Center for Atmospheric Research/NCAR/SITE.yaml @@ -0,0 +1,7 @@ +LongName: National Center for Atmospheric Research +Description: National Center for Atmospheric Research +ID: 10368 +City: Boulder +Country: US +Latitude: 40.031274660273205 +Longitude: -105.24591624232687 From 06b38653e9183156f0e7ea4163e8efe62903cf74 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 2 Apr 2024 11:35:24 -0700 Subject: [PATCH 118/190] adding IN2P3 adding IN2P3 --- .../FACILITY.yaml | 1 + .../IN2P3-CC/IN2P3-OSDF.yaml | 27 +++++++++++++++++++ .../IN2P3-CC/SITE.yaml | 13 +++++++++ 3 files changed, 41 insertions(+) create mode 100644 topology/Centre national de la recherche scientifique/FACILITY.yaml create mode 100644 topology/Centre national de la recherche scientifique/IN2P3-CC/IN2P3-OSDF.yaml create mode 100644 topology/Centre national de la recherche scientifique/IN2P3-CC/SITE.yaml diff --git a/topology/Centre national de la recherche scientifique/FACILITY.yaml b/topology/Centre national de la recherche scientifique/FACILITY.yaml new file mode 100644 index 000000000..23962c08a --- /dev/null +++ b/topology/Centre national de la recherche scientifique/FACILITY.yaml @@ -0,0 +1 @@ +ID: 10218 diff --git a/topology/Centre national de la recherche scientifique/IN2P3-CC/IN2P3-OSDF.yaml b/topology/Centre national de la recherche scientifique/IN2P3-CC/IN2P3-OSDF.yaml new file mode 100644 index 000000000..ffbdaa323 --- /dev/null +++ b/topology/Centre national de la recherche scientifique/IN2P3-CC/IN2P3-OSDF.yaml @@ -0,0 +1,27 @@ +Production: true +SupportCenter: IN2P3-CC +GroupDescription: IN2P3-CC caching infrastructure +GroupID: 1368 + +Resources: + IN2P3-CC_OSDF_CACHE: + Active: true + Description: IN2P3-CC cache + ID: 10371 + ContactLists: + Administrative Contact: + Primary: + Name: grid-admin@cc.in2p3.fr + ID: + Security Contact: + Primary: + Name: security@cc.in2p3.fr + ID: + DN: /DC=org/DC=terena/DC=tcs/C=FR/ST=Paris/O=Centre national de la recherche scientifique/CN=ccstashcache01.in2p3.fr + FQDN: ccstashcacheli01.in2p3.fr + Services: + XRootD origin server: + Description: StashCache cache server for IN2P3-CC + AllowedVOs: + - LIGO + - ANY_PUBLIC \ No newline at end of file diff --git a/topology/Centre national de la recherche scientifique/IN2P3-CC/SITE.yaml b/topology/Centre national de la recherche scientifique/IN2P3-CC/SITE.yaml new file mode 100644 index 000000000..1a5446f11 --- /dev/null +++ b/topology/Centre national de la recherche scientifique/IN2P3-CC/SITE.yaml @@ -0,0 +1,13 @@ +LongName: IN2P3-CC +Description: IN2P3-CC +ID: 10369 +AddressLine1: 21 avenue Pierre de Coubertin. +City: Villeurbanne +Country: France +LongName: IN2P3-CC +Description: IN2P3 Tier 1 +ID: xxx +Latitude: 45.78 +Longitude: 4.87 +State: Rhone-Alpes +Zipcode: 69100 \ No newline at end of file From 86fdd2012d5db6ba7860922782d26df822c31afe Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 2 Apr 2024 12:15:51 -0700 Subject: [PATCH 119/190] Changing the site name Changing the site name --- .../{NCAR => NCAR-Wyoming Supercomputing Center}/NCAR-OSDF.yaml | 0 .../{NCAR => NCAR-Wyoming Supercomputing Center}/SITE.yaml | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename topology/National Center for Atmospheric Research/{NCAR => NCAR-Wyoming Supercomputing Center}/NCAR-OSDF.yaml (100%) rename topology/National Center for Atmospheric Research/{NCAR => NCAR-Wyoming Supercomputing Center}/SITE.yaml (100%) diff --git a/topology/National Center for Atmospheric Research/NCAR/NCAR-OSDF.yaml b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml similarity index 100% rename from topology/National Center for Atmospheric Research/NCAR/NCAR-OSDF.yaml rename to topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml diff --git a/topology/National Center for Atmospheric Research/NCAR/SITE.yaml b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/SITE.yaml similarity index 100% rename from topology/National Center for Atmospheric Research/NCAR/SITE.yaml rename to topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/SITE.yaml From b51dc49012babee7eb4029c2a7790a83bd13d338 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Tue, 2 Apr 2024 16:51:19 -0500 Subject: [PATCH 120/190] Remove superfluous IDs --- .../NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml | 1 - .../NCAR-Wyoming Supercomputing Center/SITE.yaml | 1 - 2 files changed, 2 deletions(-) diff --git a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml index 9c658e484..05cf3585b 100644 --- a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml +++ b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml @@ -1,7 +1,6 @@ Production: true SupportCenter: National Center for Atmospheric Research GroupDescription: National Center for Atmospheric Research -GroupID: 1367 Resources: NCAR_OSDF_ORIGIN: diff --git a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/SITE.yaml b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/SITE.yaml index 2e96e55a4..68a4e7e33 100644 --- a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/SITE.yaml +++ b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/SITE.yaml @@ -1,6 +1,5 @@ LongName: National Center for Atmospheric Research Description: National Center for Atmospheric Research -ID: 10368 City: Boulder Country: US Latitude: 40.031274660273205 From d5c8b95a02f034e1f8aa7309cc645132ccde4581 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Tue, 2 Apr 2024 16:51:28 -0500 Subject: [PATCH 121/190] Add newline --- .../NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml index 05cf3585b..9ccf959dc 100644 --- a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml +++ b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml @@ -25,4 +25,4 @@ Resources: XRootD origin server: Description: NCAR OSDF Origin AllowedVOs: - - ANY \ No newline at end of file + - ANY From ff7b792123812af1c840868c772daf91c3e166b5 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Tue, 2 Apr 2024 16:57:45 -0500 Subject: [PATCH 122/190] Just use the standard "self" support center --- .../NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml index 9ccf959dc..f9ba3af59 100644 --- a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml +++ b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml @@ -1,5 +1,5 @@ Production: true -SupportCenter: National Center for Atmospheric Research +SupportCenter: Self Supported GroupDescription: National Center for Atmospheric Research Resources: From c940d55d9d15a1754237c18e47ae12f560714b75 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 2 Apr 2024 15:23:20 -0700 Subject: [PATCH 123/190] removing FACILITY.yaml removing FACILITY.yaml --- topology/National Center for Atmospheric Research/FACILITY.yaml | 1 - 1 file changed, 1 deletion(-) delete mode 100644 topology/National Center for Atmospheric Research/FACILITY.yaml diff --git a/topology/National Center for Atmospheric Research/FACILITY.yaml b/topology/National Center for Atmospheric Research/FACILITY.yaml deleted file mode 100644 index c6eea5eb0..000000000 --- a/topology/National Center for Atmospheric Research/FACILITY.yaml +++ /dev/null @@ -1 +0,0 @@ -ID: 10217 From 366d20e7322f9aa91a8dc9cbab6434110e7924e5 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 2 Apr 2024 15:45:53 -0700 Subject: [PATCH 124/190] adding sage to NEBRASKA_NRP_HCC_OSDF_ORIGIN adding sage to NEBRASKA_NRP_HCC_OSDF_ORIGIN --- virtual-organizations/Sage.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtual-organizations/Sage.yaml b/virtual-organizations/Sage.yaml index ed19eebfe..5d771789a 100644 --- a/virtual-organizations/Sage.yaml +++ b/virtual-organizations/Sage.yaml @@ -34,6 +34,6 @@ DataFederations: Map Subject: False - PUBLIC AllowedOrigins: - - NEBRASKA_NRP_OSDF_ORIGIN + - NEBRASKA_NRP_HCC_OSDF_ORIGIN AllowedCaches: - ANY From 92f403c3fe2122cf49c7c7afd7a3885427ec250f Mon Sep 17 00:00:00 2001 From: Marco Meyer-Conde Date: Wed, 3 Apr 2024 16:51:28 +0900 Subject: [PATCH 125/190] Fix KAGRA OSDF origin location --- .../{KAGRA Observatory => Kashiwa}/KAGRA-OSDF.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename topology/The University of Tokyo/{KAGRA Observatory => Kashiwa}/KAGRA-OSDF.yaml (80%) diff --git a/topology/The University of Tokyo/KAGRA Observatory/KAGRA-OSDF.yaml b/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml similarity index 80% rename from topology/The University of Tokyo/KAGRA Observatory/KAGRA-OSDF.yaml rename to topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml index 507ddd6dc..c12803589 100644 --- a/topology/The University of Tokyo/KAGRA Observatory/KAGRA-OSDF.yaml +++ b/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml @@ -2,12 +2,12 @@ Production: true SupportCenter: Self Supported -GroupDescription: These are the OSDF resources at the KAGRA Observatory +GroupDescription: These are the OSDF KAGRA resources at the Kashiwa Data Center Resources: KAGRA_OSDF_ORIGIN: Active: true - Description: This is an OSDF origin at the KAGRA Observatory + Description: This is an OSDF origin at Kashiwa Data Center ContactLists: Administrative Contact: Primary: From 57af063a923a42a5d51ae5679eb66d2c6a78b71c Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 3 Apr 2024 10:14:56 -0700 Subject: [PATCH 126/190] improving description improving description --- .../INFN-T1/INFN-T1/INFN-T1CachingInfrastructure_downtime.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/INFN-T1/INFN-T1/INFN-T1CachingInfrastructure_downtime.yaml b/topology/INFN-T1/INFN-T1/INFN-T1CachingInfrastructure_downtime.yaml index 0ebae5aec..fc58b44a5 100644 --- a/topology/INFN-T1/INFN-T1/INFN-T1CachingInfrastructure_downtime.yaml +++ b/topology/INFN-T1/INFN-T1/INFN-T1CachingInfrastructure_downtime.yaml @@ -22,7 +22,7 @@ # --------------------------------------------------------- - Class: UNSCHEDULED ID: 1770007352 - Description: overloaded + Description: overloaded. The node is HDD-based; we are testing if the node should be "CVMFS only" or "OSDF only." Severity: Outage StartTime: Apr 01, 2024 19:30 +0000 EndTime: May 01, 2024 06:30 +0000 From bb3b17e437ce4561e7b19e69d9268be5c857cbde Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 3 Apr 2024 10:23:06 -0700 Subject: [PATCH 127/190] adding issuer description adding issuer description --- virtual-organizations/OSG.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/virtual-organizations/OSG.yaml b/virtual-organizations/OSG.yaml index 799f9028b..d58f2c1f9 100644 --- a/virtual-organizations/OSG.yaml +++ b/virtual-organizations/OSG.yaml @@ -184,6 +184,7 @@ DataFederations: - Path: /nrdstor/protected Authorizations: - SciTokens: + # Simple public and private key issuer, https://github.com/biozit/t Issuer: https://t.nationalresearchplatform.org Base Path: /nrdstor/protected Map Subject: True From 471d23c38746a7213ee4a540baa729cc947b56ce Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 3 Apr 2024 10:43:32 -0700 Subject: [PATCH 128/190] adding kagra cache adding kagra cache --- .../KAGRA Observatory/KAGRA-OSDF.yaml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/topology/The University of Tokyo/KAGRA Observatory/KAGRA-OSDF.yaml b/topology/The University of Tokyo/KAGRA Observatory/KAGRA-OSDF.yaml index 507ddd6dc..ec6b6b68a 100644 --- a/topology/The University of Tokyo/KAGRA Observatory/KAGRA-OSDF.yaml +++ b/topology/The University of Tokyo/KAGRA Observatory/KAGRA-OSDF.yaml @@ -24,3 +24,23 @@ Resources: Description: KAGRA OSDF origin server AllowedVOs: - LIGO + + KAGRA_OSDF_CACHE: + Active: true + Description: This is an OSDF cache at the KAGRA Observatory + ContactLists: + Administrative Contact: + Primary: + ID: 5ea6fa23f5d804890b3c22e478c6945f841e5647 + Name: Marco Meyer + Security Contact: + Primary: + ID: 5ea6fa23f5d804890b3c22e478c6945f841e5647 + Name: Marco Meyer + FQDN:kagra-dsr-b1.icrr.u-tokyo.ac.jp + DN: /C=JP/O=KEK/OU=CRC/CN=host/kagra-dsr-b1.icrr.u-tokyo.ac.jp + Services: + XRootD origin server: + Description: KAGRA OSDF cache server + AllowedVOs: + - ANY From 2f607d92b4fce26fb78d9021a44eac0715cdf993 Mon Sep 17 00:00:00 2001 From: William Swanson Date: Wed, 3 Apr 2024 17:00:17 -0500 Subject: [PATCH 129/190] Fix for wrong itb pelican origin ports in topology This should change the itb pelican origin's port from topology's default 1094. --- topology/University of Wisconsin/CHTC/CHTC-ITB.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml b/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml index 632e0acd8..d7e538050 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml @@ -408,5 +408,7 @@ Resources: Services: XRootD origin server: Description: ITB OSDF Pelican Origin + Details: + endpoint_override: itb-osdf-pelican-origin.osgdev.chtc.io:8443 AllowedVOs: - GLOW From baf80a0229bc6086b275ddcd2c701ea502e65fb6 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 3 Apr 2024 16:07:43 -0700 Subject: [PATCH 130/190] fixing FQDN fixing FQDN --- topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml b/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml index 84178e586..937819ea5 100644 --- a/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml +++ b/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml @@ -37,7 +37,7 @@ Resources: Primary: ID: 5ea6fa23f5d804890b3c22e478c6945f841e5647 Name: Marco Meyer - FQDN:kagra-dsr-b1.icrr.u-tokyo.ac.jp + FQDN: kagra-dsr-b1.icrr.u-tokyo.ac.jp DN: /C=JP/O=KEK/OU=CRC/CN=host/kagra-dsr-b1.icrr.u-tokyo.ac.jp Services: XRootD origin server: From 91de796187684455280d81b163d84dcb5d27be9e Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 3 Apr 2024 16:16:38 -0700 Subject: [PATCH 131/190] only LIGO only LIGO --- topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml b/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml index 937819ea5..47a5b9ca1 100644 --- a/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml +++ b/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml @@ -43,4 +43,4 @@ Resources: XRootD origin server: Description: KAGRA OSDF cache server AllowedVOs: - - ANY + - LIGO From 79f013893e6279cbc3139e3cf4791aa8411f840a Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 4 Apr 2024 09:44:23 -0700 Subject: [PATCH 132/190] changing base name changing base name --- .../FACILITY.yaml | 0 .../IN2P3-CC/IN2P3-OSDF.yaml | 0 .../IN2P3-CC/SITE.yaml | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename topology/{Centre national de la recherche scientifique => IN2P3}/FACILITY.yaml (100%) rename topology/{Centre national de la recherche scientifique => IN2P3}/IN2P3-CC/IN2P3-OSDF.yaml (100%) rename topology/{Centre national de la recherche scientifique => IN2P3}/IN2P3-CC/SITE.yaml (100%) diff --git a/topology/Centre national de la recherche scientifique/FACILITY.yaml b/topology/IN2P3/FACILITY.yaml similarity index 100% rename from topology/Centre national de la recherche scientifique/FACILITY.yaml rename to topology/IN2P3/FACILITY.yaml diff --git a/topology/Centre national de la recherche scientifique/IN2P3-CC/IN2P3-OSDF.yaml b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml similarity index 100% rename from topology/Centre national de la recherche scientifique/IN2P3-CC/IN2P3-OSDF.yaml rename to topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml diff --git a/topology/Centre national de la recherche scientifique/IN2P3-CC/SITE.yaml b/topology/IN2P3/IN2P3-CC/SITE.yaml similarity index 100% rename from topology/Centre national de la recherche scientifique/IN2P3-CC/SITE.yaml rename to topology/IN2P3/IN2P3-CC/SITE.yaml From a9ec3ff5e7513e47ec2cbc933e88962adce34f14 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 4 Apr 2024 09:56:50 -0700 Subject: [PATCH 133/190] Update topology/IN2P3/IN2P3-CC/SITE.yaml Co-authored-by: Brian Lin --- topology/IN2P3/IN2P3-CC/SITE.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/topology/IN2P3/IN2P3-CC/SITE.yaml b/topology/IN2P3/IN2P3-CC/SITE.yaml index 1a5446f11..768595231 100644 --- a/topology/IN2P3/IN2P3-CC/SITE.yaml +++ b/topology/IN2P3/IN2P3-CC/SITE.yaml @@ -6,7 +6,6 @@ City: Villeurbanne Country: France LongName: IN2P3-CC Description: IN2P3 Tier 1 -ID: xxx Latitude: 45.78 Longitude: 4.87 State: Rhone-Alpes From 4b8c604108dd50032b287b3aa47c57c9d99451ec Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 4 Apr 2024 09:56:55 -0700 Subject: [PATCH 134/190] Update topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml Co-authored-by: Brian Lin --- topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml index ffbdaa323..3d0dc5f95 100644 --- a/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml +++ b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml @@ -1,7 +1,6 @@ Production: true SupportCenter: IN2P3-CC GroupDescription: IN2P3-CC caching infrastructure -GroupID: 1368 Resources: IN2P3-CC_OSDF_CACHE: From 79a736e95622fdb7436fb4bc8368f00208f049de Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 4 Apr 2024 09:57:00 -0700 Subject: [PATCH 135/190] Update topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml Co-authored-by: Brian Lin --- topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml index 3d0dc5f95..b8cc574ce 100644 --- a/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml +++ b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml @@ -6,7 +6,6 @@ Resources: IN2P3-CC_OSDF_CACHE: Active: true Description: IN2P3-CC cache - ID: 10371 ContactLists: Administrative Contact: Primary: From 9cedd5610310e134c185b514947a42531289060c Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 4 Apr 2024 09:57:29 -0700 Subject: [PATCH 136/190] Update topology/IN2P3/IN2P3-CC/SITE.yaml Co-authored-by: Brian Lin --- topology/IN2P3/IN2P3-CC/SITE.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/topology/IN2P3/IN2P3-CC/SITE.yaml b/topology/IN2P3/IN2P3-CC/SITE.yaml index 768595231..d4c60b9a3 100644 --- a/topology/IN2P3/IN2P3-CC/SITE.yaml +++ b/topology/IN2P3/IN2P3-CC/SITE.yaml @@ -1,6 +1,5 @@ LongName: IN2P3-CC Description: IN2P3-CC -ID: 10369 AddressLine1: 21 avenue Pierre de Coubertin. City: Villeurbanne Country: France From 4c8b38662040c5ef580326fe732988b2fa0de0be Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 4 Apr 2024 09:58:26 -0700 Subject: [PATCH 137/190] delete FACILITY.yaml delete FACILITY.yaml --- topology/IN2P3/FACILITY.yaml | 1 - 1 file changed, 1 deletion(-) delete mode 100644 topology/IN2P3/FACILITY.yaml diff --git a/topology/IN2P3/FACILITY.yaml b/topology/IN2P3/FACILITY.yaml deleted file mode 100644 index 23962c08a..000000000 --- a/topology/IN2P3/FACILITY.yaml +++ /dev/null @@ -1 +0,0 @@ -ID: 10218 From e4eaee20a7511f388d2548fee7d503a52086d240 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 4 Apr 2024 09:59:49 -0700 Subject: [PATCH 138/190] adding newlines adding newlines --- topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml | 3 ++- topology/IN2P3/IN2P3-CC/SITE.yaml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml index b8cc574ce..2af0b530b 100644 --- a/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml +++ b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml @@ -22,4 +22,5 @@ Resources: Description: StashCache cache server for IN2P3-CC AllowedVOs: - LIGO - - ANY_PUBLIC \ No newline at end of file + - ANY_PUBLIC + \ No newline at end of file diff --git a/topology/IN2P3/IN2P3-CC/SITE.yaml b/topology/IN2P3/IN2P3-CC/SITE.yaml index d4c60b9a3..0ea865fc5 100644 --- a/topology/IN2P3/IN2P3-CC/SITE.yaml +++ b/topology/IN2P3/IN2P3-CC/SITE.yaml @@ -8,4 +8,4 @@ Description: IN2P3 Tier 1 Latitude: 45.78 Longitude: 4.87 State: Rhone-Alpes -Zipcode: 69100 \ No newline at end of file +Zipcode: 69100 From 966c898b8f1211d95bbd1c26921a9973cb48807f Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 4 Apr 2024 14:32:58 -0700 Subject: [PATCH 139/190] Add downtime for Stashcache-UofA due to power grid maintenance Add downtime for Stashcache-UofA due to power grid maintenance --- .../AmsterdamPRPCachingInfrastructure_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure_downtime.yaml b/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure_downtime.yaml index 6a1bb7e7c..4aef89e59 100644 --- a/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure_downtime.yaml +++ b/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure_downtime.yaml @@ -53,3 +53,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1772663326 + Description: 'due to power grid maintenance ' + Severity: Outage + StartTime: Apr 29, 2024 14:00 +0000 + EndTime: May 02, 2024 14:30 +0000 + CreatedTime: Apr 04, 2024 21:32 +0000 + ResourceName: Stashcache-UofA + Services: + - XRootD cache server +# --------------------------------------------------------- From 890d7b111aa486c9af7705c3b93197ccea279463 Mon Sep 17 00:00:00 2001 From: hzhu16 Date: Fri, 5 Apr 2024 12:30:41 -0500 Subject: [PATCH 140/190] Update Neurodesk CVMFS URL with server name --- virtual-organizations/Neurodesk.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtual-organizations/Neurodesk.yaml b/virtual-organizations/Neurodesk.yaml index f8d1cace4..258a8aaef 100644 --- a/virtual-organizations/Neurodesk.yaml +++ b/virtual-organizations/Neurodesk.yaml @@ -4,5 +4,5 @@ Community: Neurodesk LongName: Neurodesk OASIS: OASISRepoURLs: - - http://203.101.226.164/cvmfs/neurodesk.ardc.edu.au + - http://stratum0.neurodesk.cloud.edu.au/cvmfs/neurodesk.ardc.edu.au UseOASIS: true From baeba25eed0ee68d97d06a9392bc152ff6d42a9b Mon Sep 17 00:00:00 2001 From: mwestphall Date: Fri, 5 Apr 2024 13:04:11 -0500 Subject: [PATCH 141/190] Add IN2P3 Contact Details --- topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml index 2af0b530b..02ca570c3 100644 --- a/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml +++ b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml @@ -9,12 +9,12 @@ Resources: ContactLists: Administrative Contact: Primary: - Name: grid-admin@cc.in2p3.fr - ID: + Name: IN2P3 Grid Admin + ID: 601b582450a036960907e05f3ee7b1bae995a806 Security Contact: Primary: - Name: security@cc.in2p3.fr - ID: + Name: IN2P3 Security + ID: 33fcdfcbfc32afbe7691bb90d29d1a48bcda8918 DN: /DC=org/DC=terena/DC=tcs/C=FR/ST=Paris/O=Centre national de la recherche scientifique/CN=ccstashcache01.in2p3.fr FQDN: ccstashcacheli01.in2p3.fr Services: From 39c45d66b739d479f8ab7b8e3cbb9d05e1612d66 Mon Sep 17 00:00:00 2001 From: mwestphall Date: Fri, 5 Apr 2024 13:17:01 -0500 Subject: [PATCH 142/190] Update topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml --- topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml index 02ca570c3..935bb3047 100644 --- a/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml +++ b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml @@ -1,5 +1,5 @@ Production: true -SupportCenter: IN2P3-CC +SupportCenter: Self Supported GroupDescription: IN2P3-CC caching infrastructure Resources: From e5c930a2d5a40a92d077017916858b374f3a15e8 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Fri, 5 Apr 2024 13:33:52 -0700 Subject: [PATCH 143/190] changing FQDN changing FQDN --- .../University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml index 706f1ad65..8427d3593 100644 --- a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml +++ b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml @@ -50,7 +50,7 @@ Resources: Name: Garhan Attebury ID: e86d60dc841731aebfd879d5883d66ebab20cbd2 FQDN: unl-hcc-nrdstor-origin.nationalresearchplatform.org - DN: /DC=org/DC=incommon/C=US/ST=California/O=University of California, San Diego/CN=unl-hcc-nrdstor-origin.nationalresearchplatform.org + DN: /CN=hcc-nrdstor-osdf-unl-edu.nationalresearchplatform.org Services: XRootD origin server: # Description is a brief description of the service From 8fcaa47502101966547dd5723496421c69f6d4d1 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Fri, 5 Apr 2024 13:40:39 -0700 Subject: [PATCH 144/190] adding issuer adding issuer --- virtual-organizations/Sage.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtual-organizations/Sage.yaml b/virtual-organizations/Sage.yaml index 5d771789a..bdaa6cf46 100644 --- a/virtual-organizations/Sage.yaml +++ b/virtual-organizations/Sage.yaml @@ -29,7 +29,7 @@ DataFederations: - Path: /sage Authorizations: - SciTokens: - Issuer: https://t.nationalresearchplatform.org/sage + Issuer: https://sagecontinuum.org Base Path: /sage Map Subject: False - PUBLIC From bfd2fa34c213a7d4254ff6a5e5b85988ad8cd4b3 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Fri, 5 Apr 2024 13:55:36 -0700 Subject: [PATCH 145/190] changing FQDN to nrdstor.nationalresearchplatform.org changing FQDN to nrdstor.nationalresearchplatform.org --- .../University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml index 8427d3593..46b40a8a6 100644 --- a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml +++ b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml @@ -49,8 +49,8 @@ Resources: Primary: Name: Garhan Attebury ID: e86d60dc841731aebfd879d5883d66ebab20cbd2 - FQDN: unl-hcc-nrdstor-origin.nationalresearchplatform.org - DN: /CN=hcc-nrdstor-osdf-unl-edu.nationalresearchplatform.org + FQDN: nrdstor.nationalresearchplatform.org + DN: /CN=nrdstor.nationalresearchplatform.org Services: XRootD origin server: # Description is a brief description of the service From ec21b1e86c8e1bcbb225aec9dffb0207e12f4f51 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Fri, 5 Apr 2024 15:20:01 -0700 Subject: [PATCH 146/190] changing FQDN changing FQDN --- .../NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml index f9ba3af59..4491a66f3 100644 --- a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml +++ b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml @@ -19,8 +19,8 @@ Resources: Primary: Name: Fabio Andrijauskas ID: OSG1000162 - DN: /CN=ncar-osdf01.hpc.ucar.edu - FQDN: ncar-osdf01.hpc.ucar.edu + DN: /CN=ncar.nationalresearchplatform.org + FQDN: ncar.nationalresearchplatform.org Services: XRootD origin server: Description: NCAR OSDF Origin From 083d7b6d8661e85f1dfe6cd1e5ee8d714e129cfa Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Mon, 8 Apr 2024 11:31:32 -0500 Subject: [PATCH 147/190] Extend sc-cache downtime --- .../CHTC/CHTC-OSDF_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml b/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml index 334ca3690..d2e15bbe6 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml @@ -175,3 +175,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1775938812 + Description: sc-cache is still flapping when it gets used + Severity: Intermittent Outage + StartTime: Apr 08, 2024 16:30 +0000 + EndTime: May 31, 2024 05:00 +0000 + CreatedTime: Apr 08, 2024 16:31 +0000 + ResourceName: CHTC_STASHCACHE_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- From 789d8d56f849bf0da531d267ff8f6c9dc2542e3c Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 9 Apr 2024 09:15:52 -0700 Subject: [PATCH 148/190] Fixing service name - cache Fixing service name - cache --- topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml b/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml index 47a5b9ca1..a4262cc6d 100644 --- a/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml +++ b/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF.yaml @@ -40,7 +40,7 @@ Resources: FQDN: kagra-dsr-b1.icrr.u-tokyo.ac.jp DN: /C=JP/O=KEK/OU=CRC/CN=host/kagra-dsr-b1.icrr.u-tokyo.ac.jp Services: - XRootD origin server: + XRootD cache server: Description: KAGRA OSDF cache server AllowedVOs: - LIGO From ff7c23d3a4e05faaf766af0f31f975150679754d Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Tue, 9 Apr 2024 17:28:35 -0700 Subject: [PATCH 149/190] adding Kagra cache to Ligo adding Kagra cache to Ligo --- virtual-organizations/LIGO.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/virtual-organizations/LIGO.yaml b/virtual-organizations/LIGO.yaml index f711b37fb..d82cfdcd4 100644 --- a/virtual-organizations/LIGO.yaml +++ b/virtual-organizations/LIGO.yaml @@ -128,6 +128,7 @@ DataFederations: - CIT_LIGO_STASHCACHE - SINGAPORE_INTERNET2_OSDF_CACHE - SPRACE_OSDF_CACHE + - KAGRA_OSDF_CACHE - Path: /igwn/virgo Authorizations: - FQAN: /osg/ligo From e889be10af378ff50afe97c367eae689caaf6519 Mon Sep 17 00:00:00 2001 From: Brian Lin Date: Tue, 9 Apr 2024 17:16:24 -0500 Subject: [PATCH 150/190] Add Executive Contact --- src/topology_utils.py | 1 + template-resourcegroup.yaml | 14 ++++++++++++++ 2 files changed, 15 insertions(+) diff --git a/src/topology_utils.py b/src/topology_utils.py index f337fb8d6..2b5c0e252 100644 --- a/src/topology_utils.py +++ b/src/topology_utils.py @@ -16,6 +16,7 @@ # List of contact types stored in Topology data # At time of writing, there isn't anything that restricts a contact to one of these types CONTACT_TYPES = ["administrative", + "executive", "miscellaneous", "security", "submitter", diff --git a/template-resourcegroup.yaml b/template-resourcegroup.yaml index 5ba810e0f..be9c403e9 100644 --- a/template-resourcegroup.yaml +++ b/template-resourcegroup.yaml @@ -52,6 +52,20 @@ Resources: # Name: # ID: + # (OPTIONAL) Executive Contacts are persons or groups of + # people (i.e., mailing lists) are responsible for making policy + # decisions regarding the site's integration with the OSG resource + # Executive Contact: + # Primary: + # Name: + # ID: + # Secondary: + # Name: + # ID: + # Tertiary: + # Name: + # ID: + # Local contacts are an optional set of persons or groups of # people (i.e., mailing lists) if they are a different from the # persons responsible for the resouce. For example, OSG Hosted From 5605d7c0b256ba96cc1d83bedca76a448c565391 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 10 Apr 2024 15:01:47 -0700 Subject: [PATCH 151/190] adding NCAR VO adding NCAR VO --- virtual-organizations/ncar.yaml | 38 +++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 virtual-organizations/ncar.yaml diff --git a/virtual-organizations/ncar.yaml b/virtual-organizations/ncar.yaml new file mode 100644 index 000000000..f42b77c0c --- /dev/null +++ b/virtual-organizations/ncar.yaml @@ -0,0 +1,38 @@ +--- +AppDescription: > + National Center for Atmospheric Research +CertificateOnly: false +Community: The NCAR VO will support users and experiments from NCAR project. +Contacts: + Administrative Contact: + - ID: OSG1000162 + Name: Fabio Andrijauskas + Security Contact: + - ID: OSG1000162 + Name: Fabio Andrijauskas + Sponsors: + - ID: c412f5f57dca8fe5c73fb3bc4e86bcf243e9edf7 + Name: Frank Wuerthwein + VO Manager: + - ID: OSG1000162 + Name: Fabio Andrijauskas +Disable: false +FieldsOfScience: + PrimaryFields: + - Multi-Science Community +LongName: National Center for Atmospheric Research +PrimaryURL: https://ncar.ucar.edu/ +DataFederations: + StashCache: + Namespaces: + - Path: /ncar + Authorizations: + - SciTokens: + Issuer: https://ncar.ucar.edu/ + Base Path: /ncar + Map Subject: False + - PUBLIC + AllowedOrigins: + - NCAR_OSDF_ORIGIN: + AllowedCaches: + - ANY From a1ae1382243b56cadedde8f4bb31586078d9e398 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 10 Apr 2024 16:49:08 -0700 Subject: [PATCH 152/190] Update ncar.yaml Co-authored-by: Matyas Selmeci --- virtual-organizations/ncar.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtual-organizations/ncar.yaml b/virtual-organizations/ncar.yaml index f42b77c0c..6e759decc 100644 --- a/virtual-organizations/ncar.yaml +++ b/virtual-organizations/ncar.yaml @@ -33,6 +33,6 @@ DataFederations: Map Subject: False - PUBLIC AllowedOrigins: - - NCAR_OSDF_ORIGIN: + - NCAR_OSDF_ORIGIN AllowedCaches: - ANY From 12e4b3cc08cc923331fb604a24fd82e406775129 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 10 Apr 2024 17:40:58 -0700 Subject: [PATCH 153/190] adding test area to the FDP project adding test area to the FDP project --- virtual-organizations/NRP.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/virtual-organizations/NRP.yaml b/virtual-organizations/NRP.yaml index 95f555486..109a23590 100644 --- a/virtual-organizations/NRP.yaml +++ b/virtual-organizations/NRP.yaml @@ -63,6 +63,19 @@ DataFederations: - SDSC_NRP_OSDF_ORIGIN AllowedCaches: - ANY + + - Path: /nrp/fdp/ + Authorizations: + - PUBLIC + - SciTokens: + Issuer: https://t.nationalresearchplatform.org/fdp + Base Path: /nrp/fdp/ + Map Subject: False + AllowedOrigins: + - SDSC_NRP_OSDF_ORIGIN + AllowedCaches: + - ANY + - Path: /knightlab Authorizations: - PUBLIC From f516c9a405509ae57cfb6269b99de11dc3175d8a Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 10 Apr 2024 18:06:12 -0700 Subject: [PATCH 154/190] removing spaces removing spaces --- virtual-organizations/NRP.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/virtual-organizations/NRP.yaml b/virtual-organizations/NRP.yaml index 109a23590..a2f495adb 100644 --- a/virtual-organizations/NRP.yaml +++ b/virtual-organizations/NRP.yaml @@ -24,13 +24,11 @@ FieldsOfScience: - Multi-Science Community ID: 232 LongName: National research platform origin - PrimaryURL: https://nationalresearchplatform.org PurposeURL: https://nationalresearchplatform.org ReportingGroups: - nrp SupportURL: https://nationalresearchplatform.org - DataFederations: StashCache: Namespaces: @@ -63,7 +61,6 @@ DataFederations: - SDSC_NRP_OSDF_ORIGIN AllowedCaches: - ANY - - Path: /nrp/fdp/ Authorizations: - PUBLIC @@ -75,7 +72,6 @@ DataFederations: - SDSC_NRP_OSDF_ORIGIN AllowedCaches: - ANY - - Path: /knightlab Authorizations: - PUBLIC From 11dd9478df51130508148ea04b72ccb1826a4673 Mon Sep 17 00:00:00 2001 From: Showmic Islam <57932760+showmic09@users.noreply.github.com> Date: Thu, 11 Apr 2024 14:49:12 -0500 Subject: [PATCH 155/190] Create UA_Kocot.yaml --- projects/UA_Kocot.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 projects/UA_Kocot.yaml diff --git a/projects/UA_Kocot.yaml b/projects/UA_Kocot.yaml new file mode 100644 index 000000000..81751dbcf --- /dev/null +++ b/projects/UA_Kocot.yaml @@ -0,0 +1,5 @@ +Description: Biodiversity and evolution of marine invertebrates +Department: Department of Biological Sciences +FieldOfScience: Biological and Biomedical Sciences +Organization: The University of Alabama +PIName: Kevin Kocot From ee7d495e00bdeaf65497b9217d69d1efae8aac09 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 11 Apr 2024 14:41:20 -0700 Subject: [PATCH 156/190] changing auth_endpoint and endpoint auth_endpoint and endpoint to match whichever port you configured for the origin --- .../University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml index 46b40a8a6..5cae980c2 100644 --- a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml +++ b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin.yaml @@ -55,5 +55,8 @@ Resources: XRootD origin server: # Description is a brief description of the service Description: Nebraska NRP HCC OSDF Origin + Details: + endpoint_override: nrdstor.nationalresearchplatform.org:8443 + auth_endpoint_override: nrdstor.nationalresearchplatform.org:8443 AllowedVOs: - ANY From 5c49efa87f9cbdd82905892a4623cc7f1eeb28ae Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 11 Apr 2024 14:44:33 -0700 Subject: [PATCH 157/190] changing ncar origin port changing ncar origin port --- .../NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml index 4491a66f3..ffba18a83 100644 --- a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml +++ b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF.yaml @@ -24,5 +24,8 @@ Resources: Services: XRootD origin server: Description: NCAR OSDF Origin + Details: + endpoint_override: ncar.nationalresearchplatform.org:8443 + auth_endpoint_override: ncar.nationalresearchplatform.org:8443 AllowedVOs: - ANY From fd25f48b03e945e0b064303e4b99b320c3d5f4bf Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Fri, 12 Apr 2024 09:09:55 -0500 Subject: [PATCH 158/190] /sage namespace should not be publicly readable Discussed on a Zoom call; the /sage namespace is not meant to be publicly readable so shouldn't have PUBLIC auth set. --- virtual-organizations/Sage.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/virtual-organizations/Sage.yaml b/virtual-organizations/Sage.yaml index bdaa6cf46..c9d6b710f 100644 --- a/virtual-organizations/Sage.yaml +++ b/virtual-organizations/Sage.yaml @@ -32,7 +32,6 @@ DataFederations: Issuer: https://sagecontinuum.org Base Path: /sage Map Subject: False - - PUBLIC AllowedOrigins: - NEBRASKA_NRP_HCC_OSDF_ORIGIN AllowedCaches: From f0932bf3ba7f7b5b8024143fc5b9ec5e5c60bdd6 Mon Sep 17 00:00:00 2001 From: William Swanson Date: Fri, 12 Apr 2024 10:55:39 -0500 Subject: [PATCH 159/190] Fix CHTC ITB Pelican Origin auth endpoint port The auth and un-auth endpoints for the CHTC ITB Pelican Origin should both be 8443. --- topology/University of Wisconsin/CHTC/CHTC-ITB.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml b/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml index d7e538050..7a79790e7 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml @@ -410,5 +410,6 @@ Resources: Description: ITB OSDF Pelican Origin Details: endpoint_override: itb-osdf-pelican-origin.osgdev.chtc.io:8443 + auth_endpoint_override: itb-osdf-pelican-origin.osgdev.chtc.io:8443 AllowedVOs: - GLOW From 789a38438a5d13801e1601792250eb9ddbe011b8 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 15 Apr 2024 10:23:22 -0700 Subject: [PATCH 160/190] Fixing services Fixing services --- topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml index 935bb3047..d63c69d50 100644 --- a/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml +++ b/topology/IN2P3/IN2P3-CC/IN2P3-OSDF.yaml @@ -18,9 +18,9 @@ Resources: DN: /DC=org/DC=terena/DC=tcs/C=FR/ST=Paris/O=Centre national de la recherche scientifique/CN=ccstashcache01.in2p3.fr FQDN: ccstashcacheli01.in2p3.fr Services: - XRootD origin server: + XRootD cache server: Description: StashCache cache server for IN2P3-CC AllowedVOs: - LIGO - ANY_PUBLIC - \ No newline at end of file + From 28a4ba6816792100c31b64de5151764759fa2a8f Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 15 Apr 2024 11:17:13 -0700 Subject: [PATCH 161/190] Add downtime for CARDIFF_UK_OSDF_CACHE due to Overloaded, setting for CVMF_ONLY --- .../CardiffPRPCachingInfrastructure_downtime.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/topology/Cardiff University/Cardiff Computing Cluster/CardiffPRPCachingInfrastructure_downtime.yaml b/topology/Cardiff University/Cardiff Computing Cluster/CardiffPRPCachingInfrastructure_downtime.yaml index 960ebac2f..950e0385b 100644 --- a/topology/Cardiff University/Cardiff Computing Cluster/CardiffPRPCachingInfrastructure_downtime.yaml +++ b/topology/Cardiff University/Cardiff Computing Cluster/CardiffPRPCachingInfrastructure_downtime.yaml @@ -19,3 +19,15 @@ ResourceName: CARDIFF_UK_OSDF_CACHE Services: - XRootD cache server +# --------------------------------------------------------- + - Class: UNSCHEDULED + ID: 1782049725 + Description: Overloaded, setting for CVMF_ONLY + Severity: Outage + StartTime: Apr 15, 2024 08:00 +0000 + EndTime: Apr 16, 2024 05:30 +0000 + CreatedTime: Apr 15, 2024 18:16 +0000 + ResourceName: CARDIFF_UK_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- From 41d8056351d5b4dab524f63b72cd36af8b1945b6 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 15 Apr 2024 11:24:40 -0700 Subject: [PATCH 162/190] Add downtime for Stashcache-KISTI due to overloaded Add downtime for Stashcache-KISTI due to overloaded --- .../KISTIPRPCachingInfrastructure_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/Korea Institute of Science and Technology Information/T3_KR_KISTI/KISTIPRPCachingInfrastructure_downtime.yaml b/topology/Korea Institute of Science and Technology Information/T3_KR_KISTI/KISTIPRPCachingInfrastructure_downtime.yaml index 7a8df6f25..97011f945 100644 --- a/topology/Korea Institute of Science and Technology Information/T3_KR_KISTI/KISTIPRPCachingInfrastructure_downtime.yaml +++ b/topology/Korea Institute of Science and Technology Information/T3_KR_KISTI/KISTIPRPCachingInfrastructure_downtime.yaml @@ -20,3 +20,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1782054360 + Description: Overloaded + Severity: Outage + StartTime: Apr 15, 2024 08:00 +0000 + EndTime: Apr 22, 2024 19:30 +0000 + CreatedTime: Apr 15, 2024 18:23 +0000 + ResourceName: Stashcache-KISTI + Services: + - XRootD cache server +# --------------------------------------------------------- From e0afe10e648eb89db28a1419899cb93cd4b105a2 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 15 Apr 2024 11:27:26 -0700 Subject: [PATCH 163/190] Add downtime for Stashcache-Chicago due to Overloaded Add downtime for Stashcache-Chicago due to Overloaded --- .../I2ChicagoInfrastructure_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/Internet2/Internet2Chicago/I2ChicagoInfrastructure_downtime.yaml b/topology/Internet2/Internet2Chicago/I2ChicagoInfrastructure_downtime.yaml index 8890e9e18..4bbac9456 100644 --- a/topology/Internet2/Internet2Chicago/I2ChicagoInfrastructure_downtime.yaml +++ b/topology/Internet2/Internet2Chicago/I2ChicagoInfrastructure_downtime.yaml @@ -9,3 +9,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1782056025 + Description: overloaded + Severity: Outage + StartTime: Apr 15, 2024 08:00 +0000 + EndTime: Apr 22, 2024 19:30 +0000 + CreatedTime: Apr 15, 2024 18:26 +0000 + ResourceName: Stashcache-Chicago + Services: + - XRootD cache server +# --------------------------------------------------------- From efe83965e829fbd30ea7b33aa37184feea13a48d Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 15 Apr 2024 11:36:48 -0700 Subject: [PATCH 164/190] Add downtime for LEHIGH-HAWK-OSDF-CACHE due to Overloaded The monitoring shows increased "connection refuse" and time-outs in all the monitoring tests. --- .../Lehigh - Hawk/Lehigh - Hawk_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/Lehigh University/Lehigh - Hawk/Lehigh - Hawk_downtime.yaml b/topology/Lehigh University/Lehigh - Hawk/Lehigh - Hawk_downtime.yaml index cc9483b63..151fa610e 100644 --- a/topology/Lehigh University/Lehigh - Hawk/Lehigh - Hawk_downtime.yaml +++ b/topology/Lehigh University/Lehigh - Hawk/Lehigh - Hawk_downtime.yaml @@ -86,4 +86,15 @@ Services: - CE # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1782060687 + Description: Overloaded + Severity: Outage + StartTime: Apr 15, 2024 08:00 +0000 + EndTime: Apr 22, 2024 19:00 +0000 + CreatedTime: Apr 15, 2024 18:34 +0000 + ResourceName: LEHIGH-HAWK-OSDF-CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- From 8dbcf604271954a953e46ba26ad979412925de2c Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 15 Apr 2024 18:44:59 -0700 Subject: [PATCH 165/190] Setting burnpro3d Public Setting burnpro3d Public --- virtual-organizations/UCSD.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/virtual-organizations/UCSD.yaml b/virtual-organizations/UCSD.yaml index 93ef45bff..910c23318 100644 --- a/virtual-organizations/UCSD.yaml +++ b/virtual-organizations/UCSD.yaml @@ -44,6 +44,7 @@ DataFederations: Issuer: https://t.nationalresearchplatform.org/burnpro3d Base Path: /ndp/burnpro3d Map Subject: False + - PUBLIC AllowedOrigins: - SDSC_NRP_OSDF_ORIGIN - NEBRASKA_NRP_OSDF_ORIGIN From 41e3cda35559b790442eb844befc14b4d3dd4dc8 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 16 Apr 2024 10:32:48 -0500 Subject: [PATCH 166/190] Update UCSD.yaml --- virtual-organizations/UCSD.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtual-organizations/UCSD.yaml b/virtual-organizations/UCSD.yaml index 910c23318..a355c46cf 100644 --- a/virtual-organizations/UCSD.yaml +++ b/virtual-organizations/UCSD.yaml @@ -44,7 +44,7 @@ DataFederations: Issuer: https://t.nationalresearchplatform.org/burnpro3d Base Path: /ndp/burnpro3d Map Subject: False - - PUBLIC + - PUBLIC AllowedOrigins: - SDSC_NRP_OSDF_ORIGIN - NEBRASKA_NRP_OSDF_ORIGIN From fd5784daf31bf804281fb42d57cf7eb5a5054b77 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 16 Apr 2024 10:44:44 -0500 Subject: [PATCH 167/190] Drop Procfile and gunicorn It is only used for hosting Topology on Heroku, which we no longer do. gunicorn has an unpatched security issue so I'd like to get rid of it. --- Procfile | 2 -- requirements-rootless.txt | 1 - 2 files changed, 3 deletions(-) delete mode 100644 Procfile diff --git a/Procfile b/Procfile deleted file mode 100644 index 2773bff0a..000000000 --- a/Procfile +++ /dev/null @@ -1,2 +0,0 @@ -web: env PYTHONPATH=$PYTHONPATH:$PWD/src gunicorn app:app --log-file=- - diff --git a/requirements-rootless.txt b/requirements-rootless.txt index b94291383..1dea7c264 100644 --- a/requirements-rootless.txt +++ b/requirements-rootless.txt @@ -12,7 +12,6 @@ Flask~=2.3.2 Flask-WTF~=1.1.1 gitdb~=4.0.10 GitPython~=3.1.31 -gunicorn~=20.1.0 icalendar~=5.0.5 idna~=3.4 itsdangerous~=2.1.2 From 39b26c080fc4370b25e7335c5ccd1e4deab85ac0 Mon Sep 17 00:00:00 2001 From: mwestphall Date: Tue, 16 Apr 2024 11:43:30 -0500 Subject: [PATCH 168/190] Update projects/UA_Kocot.yaml Co-authored-by: Matyas Selmeci --- projects/UA_Kocot.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/UA_Kocot.yaml b/projects/UA_Kocot.yaml index 81751dbcf..98eae0cac 100644 --- a/projects/UA_Kocot.yaml +++ b/projects/UA_Kocot.yaml @@ -1,5 +1,5 @@ Description: Biodiversity and evolution of marine invertebrates Department: Department of Biological Sciences FieldOfScience: Biological and Biomedical Sciences -Organization: The University of Alabama +Organization: University of Alabama PIName: Kevin Kocot From 15fa0147c24977dde72e20ba404b66108ec63a0d Mon Sep 17 00:00:00 2001 From: Ilija Vukotic Date: Tue, 16 Apr 2024 23:40:03 -0500 Subject: [PATCH 169/190] removing NRP varnish server for SLAC --- topology/Stanford University/SLAC/WT2.yaml | 27 ---------------------- 1 file changed, 27 deletions(-) diff --git a/topology/Stanford University/SLAC/WT2.yaml b/topology/Stanford University/SLAC/WT2.yaml index 1e51d4f7c..1bd5fed96 100644 --- a/topology/Stanford University/SLAC/WT2.yaml +++ b/topology/Stanford University/SLAC/WT2.yaml @@ -226,32 +226,5 @@ Resources: endpoint: psnr-farm10.slac.stanford.edu VOOwnership: ATLAS: 100 - SLAC_VARNISH_FRONTIER_NRP: - Active: true - ContactLists: - Administrative Contact: - Primary: - ID: OSG1000064 - Name: Ilija Vukotic - Secondary: - ID: cf2de3eba56782b901bade70fe8bc1c18c36dd90 - Name: Wei Yang - Security Contact: - Primary: - ID: OSG1000064 - Name: Ilija Vukotic - Secondary: - ID: cf2de3eba56782b901bade70fe8bc1c18c36dd90 - Name: Wei Yang - Description: Varnish cache located at UCSC - FQDN: seaweed-dtn100-1.ucsc.edu - Services: - Squid: - Description: Varnish based squid service for Frontier at NRP - Details: - uri_override: seaweed-dtn100-1.ucsc.edu:6082 - Monitored: true - VOOwnership: - ATLAS: 100 SupportCenter: USATLAS From 712588b170af138a119fa40099d307b121557b3b Mon Sep 17 00:00:00 2001 From: rvaladao <45594439+rvaladao@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:06:49 -0300 Subject: [PATCH 170/190] Update UERJ_downtime.yaml We need to test our IPv6 routes with our provider --- .../T2_BR_UERJ/UERJ_downtime.yaml | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/topology/Universidade do Estado do Rio de Janeiro/T2_BR_UERJ/UERJ_downtime.yaml b/topology/Universidade do Estado do Rio de Janeiro/T2_BR_UERJ/UERJ_downtime.yaml index 35eb4bf03..78a8c7671 100644 --- a/topology/Universidade do Estado do Rio de Janeiro/T2_BR_UERJ/UERJ_downtime.yaml +++ b/topology/Universidade do Estado do Rio de Janeiro/T2_BR_UERJ/UERJ_downtime.yaml @@ -1346,4 +1346,59 @@ Services: - SRMv2 # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1783591351 + Description: We need to test our IPv6 routes with our provider + Severity: Outage + StartTime: Apr 19, 2024 11:00 +0000 + EndTime: Apr 24, 2024 20:00 +0000 + CreatedTime: Apr 17, 2024 13:05 +0000 + ResourceName: UERJ_CE + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1783591733 + Description: We need to test our IPv6 routes with our provider + Severity: Outage + StartTime: Apr 19, 2024 11:00 +0000 + EndTime: Apr 24, 2024 20:00 +0000 + CreatedTime: Apr 17, 2024 13:06 +0000 + ResourceName: UERJ_CE_2 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1783591812 + Description: We need to test our IPv6 routes with our provider + Severity: Outage + StartTime: Apr 19, 2024 11:00 +0000 + EndTime: Apr 24, 2024 20:00 +0000 + CreatedTime: Apr 17, 2024 13:06 +0000 + ResourceName: UERJ_SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1783591907 + Description: We need to test our IPv6 routes with our provider + Severity: Outage + StartTime: Apr 19, 2024 11:00 +0000 + EndTime: Apr 24, 2024 20:00 +0000 + CreatedTime: Apr 17, 2024 13:06 +0000 + ResourceName: UERJ_SQUID + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1783591986 + Description: We need to test our IPv6 routes with our provider + Severity: Outage + StartTime: Apr 19, 2024 11:00 +0000 + EndTime: Apr 24, 2024 20:00 +0000 + CreatedTime: Apr 17, 2024 13:06 +0000 + ResourceName: UERJ_SQUID_2 + Services: + - Squid +# --------------------------------------------------------- From c7eeff3f0b3ceaee877c05c3fa83f75a285cb244 Mon Sep 17 00:00:00 2001 From: William Swanson Date: Wed, 17 Apr 2024 09:35:20 -0500 Subject: [PATCH 171/190] Register CHTC ITB OSDF PELICAN CACHE --- .../CHTC/CHTC-ITB.yaml | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml b/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml index 7a79790e7..7c50a49fb 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml @@ -413,3 +413,40 @@ Resources: auth_endpoint_override: itb-osdf-pelican-origin.osgdev.chtc.io:8443 AllowedVOs: - GLOW + + CHTC-ITB-OSDF-PELICAN-CACHE: + Active: true + Description: >- + This is a cache used for testing the Pelican client and + integration with the OSDF + ContactLists: + Administrative Contact: + Primary: + ID: OSG1000589 + Name: William N Swanson + Secondary: + ID: OSG1000002 + Name: Matyas Selmeci + Tertiary: + ID: OSG1000003 + Name: Brian Lin + Security Contact: + Primary: + ID: OSG1000589 + Name: William N Swanson + Secondary: + ID: OSG1000002 + Name: Matyas Selmeci + Tertiary: + ID: OSG1000003 + Name: Brian Lin + FQDN: itb-osdf-pelican-cache.osgdev.chtc.io + DN: /CN=itb-osdf-pelican-cache.osgdev.chtc.io + Services: + XRootD cache server: + Description: ITB OSDF Pelican Cache + Details: + endpoint_override: itb-osdf-pelican-cache.osgdev.chtc.io:8443 + auth_endpoint_override: itb-osdf-pelican-cache.osgdev.chtc.io:8443 + AllowedVOs: + - GLOW From e8ab071198433494e6d4d5af62974dd6f27f9bc2 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Wed, 17 Apr 2024 09:54:52 -0500 Subject: [PATCH 172/190] Change domain in CHTC-ITB-OSDF-PELICAN-CACHE This cache is now in the osdf-dev namespace and the FQDN now ends with .osdf-dev.chtc.io --- topology/University of Wisconsin/CHTC/CHTC-ITB.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml b/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml index 7c50a49fb..cc1a8b17f 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml @@ -440,13 +440,13 @@ Resources: Tertiary: ID: OSG1000003 Name: Brian Lin - FQDN: itb-osdf-pelican-cache.osgdev.chtc.io - DN: /CN=itb-osdf-pelican-cache.osgdev.chtc.io + FQDN: itb-osdf-pelican-cache.osdf-dev.chtc.io + DN: /CN=itb-osdf-pelican-cache.osdf-dev.chtc.io Services: XRootD cache server: Description: ITB OSDF Pelican Cache Details: - endpoint_override: itb-osdf-pelican-cache.osgdev.chtc.io:8443 - auth_endpoint_override: itb-osdf-pelican-cache.osgdev.chtc.io:8443 + endpoint_override: itb-osdf-pelican-cache.osdf-dev.chtc.io:8443 + auth_endpoint_override: itb-osdf-pelican-cache.osdf-dev.chtc.io:8443 AllowedVOs: - GLOW From 675fd5c1778f87ba4033c6b197370f22c3fed410 Mon Sep 17 00:00:00 2001 From: Alperen <90117103+Rhymlore@users.noreply.github.com> Date: Wed, 17 Apr 2024 13:14:27 -0500 Subject: [PATCH 173/190] Added Organization ID key to 1,082 YAML Files (#3672) * Added InstitutionIDs to the projects * Update * Add in projects missing InstitutionID's * Add newlines to projects missing them * Add Institution ID to cms.org.purduecal.yaml * Add the remaining Institution * Add the remaining Institution * Update the schema --------- Co-authored-by: Cannon Lock Co-authored-by: Cannon Lock <49032265+CannonLock@users.noreply.github.com> --- projects/ACE_NIAID.yaml | 1 + projects/AMFORA.yaml | 1 + projects/AMNH.astro.yaml | 1 + projects/AMNH.yaml | 1 + projects/AMNH_Burbrink.yaml | 1 + projects/AMNH_MacLow.yaml | 1 + projects/AMNH_Smith.yaml | 1 + projects/AMS.yaml | 1 + projects/ASPU.yaml | 1 + projects/ASU-CFD.yaml | 1 + projects/ASU_CoMSESNet.yaml | 1 + projects/ASU_EvolutionMedicineIT.yaml | 1 + projects/ASU_Jacobs.yaml | 1 + projects/ASU_Ozkan.yaml | 1 + projects/ASU_Pfeifer.yaml | 1 + projects/ASU_RCStaff.yaml | 1 + projects/ASU_Singharoy.yaml | 1 + projects/AdHocComm.yaml | 1 + projects/AfricanSchool.yaml | 1 + projects/AlGDock.yaml | 1 + projects/Albany_DAES.yaml | 1 + projects/AllenISD_Cheon.yaml | 1 + projects/AmorphousOrder.yaml | 1 + projects/AnimalSocialNetworks.yaml | 1 + projects/Arcadia_Curotto.yaml | 1 + projects/Argoneut.yaml | 1 + projects/Arizona_Chan_Steward.yaml | 1 + projects/Arizona_DataScienceInstitute.yaml | 1 + projects/Arizona_Males.yaml | 1 + projects/Arizona_Paschalidis.yaml | 1 + projects/Arkansas_Nelson.yaml | 1 + projects/Arkansas_UITSStaff.yaml | 1 + projects/AtlasConnect.yaml | 1 + projects/Auburn_Hauck.yaml | 1 + projects/BAERI_Bejaoui.yaml | 1 + projects/BCBB_NIAID.yaml | 1 + projects/BCH_Holt.yaml | 1 + projects/BCH_ResearchComputing.yaml | 1 + projects/BC_Grubb.yaml | 1 + projects/BC_Savage.yaml | 1 + projects/BGAgenomics.yaml | 1 + projects/BNL-PHENIX.yaml | 1 + projects/BNLPET.yaml | 1 + projects/BNL_Schenke.yaml | 1 + projects/BNL_Venugopalan.yaml | 1 + projects/BRDMS.yaml | 1 + projects/BU_Mu2e.yaml | 1 + projects/BYUI_Becerril.yaml | 1 + projects/BakerLab.yaml | 1 + projects/BaylorCM_Hirschi.yaml | 1 + projects/BetaDecay.yaml | 1 + projects/BioAlgorithms.yaml | 1 + projects/BioGraph.yaml | 1 + projects/BioMolMach.yaml | 1 + projects/BioStat.yaml | 1 + projects/Bioconductor.yaml | 1 + projects/BiomedInfo.yaml | 1 + projects/Biomim.yaml | 1 + projects/BiostatsChapple.yaml | 1 + projects/BrighamAndWomens_Baratono.yaml | 1 + projects/Bucknell_IT.yaml | 1 + projects/CGS.yaml | 1 + projects/CHTC-Staff.yaml | 1 + projects/CHomP.yaml | 1 + projects/CLAS12.yaml | 1 + projects/CMU_Isayev.yaml | 1 + projects/CMU_Romagnoli.yaml | 1 + projects/CMU_Viswanathan.yaml | 1 + projects/CNU_Henry.yaml | 1 + projects/COVID19_FoldingAtHome.yaml | 1 + projects/COVID19_Harvard_Bitran.yaml | 1 + projects/COVID19_Illinois_Gammie.yaml | 1 + projects/COVID19_JHU_Howard.yaml | 1 + projects/COVID19_LSUHSC_Chapple.yaml | 1 + projects/COVID19_RepertoireTCell.yaml | 2 ++ projects/COVID19_Stanford_Das.yaml | 1 + projects/COVID19_UCSD_Hsiao.yaml | 1 + projects/COVID19_UNL_Weitzel.yaml | 1 + projects/COVID19_WeNMR.yaml | 1 + projects/CPSC_5520.yaml | 3 ++- projects/CSM_BeEST.yaml | 1 + projects/CSUN_Jiang.yaml | 1 + projects/CSUN_Katz.yaml | 1 + projects/CSUSB_ITS.yaml | 1 + projects/CSU_Buchanan.yaml | 1 + projects/CUAnschutz_JuarezColunga.yaml | 1 + projects/CUBoulder_Aydin.yaml | 1 + projects/CUNYBrooklyn_Juszczak.yaml | 1 + projects/Caltech_Bouma.yaml | 1 + projects/Caltech_Chary.yaml | 1 + projects/Caltech_Kanner.yaml | 1 + projects/Caltech_Morrell.yaml | 1 + projects/Caltech_Rusholme.yaml | 1 + projects/Caltech_Vallisneri.yaml | 1 + projects/CampusWorkshop_Feb2021.yaml | 1 + projects/Canisius_Wood.yaml | 1 + projects/CaseWestern_Tolbert.yaml | 1 + projects/CaseWestern_Zhang.yaml | 1 + projects/CatalystDesign.yaml | 1 + projects/CatalystHTVS.yaml | 1 + projects/Cdms.yaml | 1 + projects/CedarsSinai_Meyer.yaml | 1 + projects/CentaurSim.yaml | 1 + projects/Cincinnati_RCD.yaml | 1 + projects/Clemson.yaml | 1 + projects/Clemson_Sarupria.yaml | 1 + projects/CloudTemplate.yaml | 1 + projects/ClusterJob.yaml | 1 + projects/Coe_Stobb.yaml | 1 + projects/Columbia_Alquraishi.yaml | 1 + projects/Columbia_Eaton.yaml | 1 + projects/Columbia_Gibson.yaml | 1 + projects/Columbia_Jensen.yaml | 1 + projects/Columbia_Mandal.yaml | 1 + projects/Columbia_Reichman.yaml | 3 ++- projects/CombinedPS.yaml | 1 + projects/CometCloud.yaml | 1 + projects/CompBinFormMod.yaml | 1 + projects/CompChem.yaml | 1 + projects/CompNeuro.yaml | 1 + projects/ConnectTrain.yaml | 1 + projects/ContinuousIntegration.yaml | 1 + projects/Cornell_Gage.yaml | 1 + projects/Cornell_Lai.yaml | 1 + projects/Cornell_Pugh.yaml | 1 + projects/Cornell_Sandoz.yaml | 1 + projects/CotranslationalFolding.yaml | 1 + projects/CpDarkMatterSimulation.yaml | 1 + projects/Creighton_Kokensparger.yaml | 1 + projects/DBConcepts.yaml | 1 + projects/DDPSC_Baxter.yaml | 1 + projects/DES.yaml | 1 + projects/DESDM.yaml | 1 + projects/DOSAR.yaml | 1 + projects/DTWclassifier.yaml | 1 + projects/DUNE.yaml | 1 + projects/Dartmouth_Chaboyer.yaml | 1 + projects/DataSaoPaulo.yaml | 1 + projects/DataTrieste.yaml | 1 + projects/Dearborn_Shawver.yaml | 1 + projects/DeepMail.yaml | 1 + projects/DeerDisease.yaml | 1 + projects/DelhiWorkshop2015.yaml | 1 + projects/DemandSC.yaml | 1 + projects/DemoSims.yaml | 1 + projects/DetectorDesign.yaml | 1 + projects/DiffCorr.yaml | 1 + projects/Diffpred.yaml | 1 + projects/Diffusion-predictor.yaml | 1 + projects/Dissertation.yaml | 1 + projects/Doane_Engebretson.yaml | 1 + projects/Drexel_URCF.yaml | 1 + projects/Duke-QGP.yaml | 1 + projects/Duke_Charbonneau.yaml | 1 + projects/ECFA.yaml | 1 + projects/EDFCHT.yaml | 1 + projects/EHEC.yaml | 1 + projects/EIC.yaml | 1 + projects/EICpseudodata.yaml | 1 + projects/EMODIS-NDVI.yaml | 1 + projects/ERVmodels.yaml | 1 + projects/ETHZ_Zhang.yaml | 1 + projects/EWMS_Riedel_Startup.yaml | 1 + projects/Emory_Boettcher.yaml | 1 + projects/Emory_Chavez.yaml | 1 + projects/Emory_Pesavento.yaml | 1 + projects/EmpModNatGas.yaml | 1 + projects/EpiBrain.yaml | 1 + projects/Etown_Wittmeyer.yaml | 1 + projects/Eureka_Danehkar.yaml | 1 + projects/EvoProtDrug.yaml | 1 + projects/EvoTheory.yaml | 1 + projects/EvolCE.yaml | 1 + projects/EvolSims.yaml | 1 + projects/EvolvingAI.yaml | 1 + projects/ExhaustiveSearch.yaml | 1 + projects/ExoplanetaryACS.yaml | 1 + projects/FDDRCS.yaml | 1 + projects/FDLTCC_Wetherbee.yaml | 1 + projects/FECliu.yaml | 1 + projects/FEMyo.yaml | 1 + projects/FF15IPQEXT.yaml | 1 + projects/FFValidate.yaml | 1 + projects/FIFE.yaml | 1 + projects/FIU_DCunha.yaml | 1 + projects/FIU_Guo.yaml | 1 + projects/FIU_Hamid.yaml | 1 + projects/FNAL_Hoeche.yaml | 1 + projects/FRISpoilageProject.yaml | 1 + projects/FSU_Kolberg.yaml | 1 + projects/FSU_RCC.yaml | 1 + projects/Fairfield_Kubasik.yaml | 1 + projects/Fermilab.yaml | 1 + projects/Flightworthy.yaml | 1 + projects/Fluka.yaml | 1 + projects/FutureColliders.yaml | 1 + projects/GATech_Brown.yaml | 1 + projects/GATech_Chau.yaml | 1 + projects/GATech_Coogan.yaml | 1 + projects/GATech_Jezghani.yaml | 1 + projects/GATech_Lang.yaml | 1 + projects/GATech_PACE.yaml | 1 + projects/GATech_Randall.yaml | 1 + projects/GATech_Ross.yaml | 1 + projects/GATech_Sholl.yaml | 1 + projects/GATech_Taboada.yaml | 1 + projects/GLUEX.yaml | 1 + projects/GPCRbinders.yaml | 1 + projects/GPN.yaml | 1 + projects/GRAPLEr.yaml | 7 ++++--- projects/GRASP.yaml | 1 + projects/GRScorrelation.yaml | 1 + projects/GSU_ARCTIC.yaml | 1 + projects/GSU_Maimon.yaml | 1 + projects/GTConvertHTC.yaml | 1 + projects/GWU_OTSStaff.yaml | 1 + projects/GWU_Orti.yaml | 1 + projects/GWU_TikidjiHamburyan.yaml | 1 + projects/GanForAuto.yaml | 1 + projects/Gateway_DistribMedicalAI.yaml | 1 + projects/Genie.yaml | 1 + projects/GenomicIntegration.yaml | 1 + projects/GeoTunnel.yaml | 1 + projects/GlassySystems.yaml | 1 + projects/GlobalDH.yaml | 1 + projects/Groundhog.yaml | 1 + projects/Guam_Bentlage.yaml | 1 + projects/HASHA.yaml | 1 + projects/HCBData.yaml | 1 + projects/HCCLocalSubmit.yaml | 1 + projects/HCC_staff.yaml | 1 + projects/HL-LHC-TP.yaml | 1 + projects/HPS.yaml | 1 + projects/HRRRMining.yaml | 1 + projects/HTCC.yaml | 1 + projects/Harvard_Fox.yaml | 1 + projects/Harvard_Wofsy.yaml | 1 + projects/Hawaii_Dodds.yaml | 1 + projects/Hawaii_Doetinchem.yaml | 1 + projects/Hawaii_Gorham.yaml | 1 + projects/HealthInformatics.yaml | 1 + projects/HypergraphDegreeSeq.yaml | 1 + projects/IAState_ITStaff.yaml | 1 + projects/IAState_Iadecola.yaml | 1 + projects/IBN130001-Plus.yaml | 1 + projects/IITPROSPECT.yaml | 1 + projects/IIT_Cheng.yaml | 1 + projects/IIT_Kang.yaml | 1 + projects/IIT_Li.yaml | 1 + projects/IIT_Minh.yaml | 1 + projects/IIT_Rosa.yaml | 1 + projects/IIT_Wereszczynski.yaml | 1 + projects/IIT_Zhong.yaml | 1 + projects/IRIS-CI.yaml | 1 + projects/IRRI.yaml | 1 + projects/IU-PTI_Airavata.yaml | 1 + projects/IU_Tang.yaml | 1 + projects/IVSelection.yaml | 1 + projects/IceCube.yaml | 1 + projects/IceCube_2022_Halzen.yaml | 1 + projects/Illinois_2022_Tsokaros.yaml | 1 + projects/Illinois_Jackson.yaml | 1 + projects/Illinois_Petravick.yaml | 1 + projects/Illinois_Vieira.yaml | 1 + projects/IngaCFMID.yaml | 1 + projects/Internet2.yaml | 1 + projects/Internet2_MS-CC.yaml | 1 + projects/JAM.yaml | 1 + projects/JHU_Howard.yaml | 1 + projects/JHU_Zhang.yaml | 1 + projects/JLAB-TEST.yaml | 1 + projects/JLAB.EIC.yaml | 1 + projects/JLabMOLLER.yaml | 1 + projects/JacksonLab_Awe.yaml | 1 + projects/JediNetworks.yaml | 1 + projects/KORDrugdiscov.yaml | 1 + projects/KOTO.yaml | 2 ++ projects/KSU_CIS625.yaml | 1 + projects/KSU_Comer.yaml | 1 + projects/KSU_Li.yaml | 1 + projects/KSU_Ng.yaml | 1 + projects/KSU_Staff.yaml | 1 + projects/KSU_Thumm.yaml | 1 + projects/Kennesaw_RC.yaml | 1 + projects/KentState_Strickland.yaml | 1 + projects/KentState_Thomas.yaml | 1 + projects/KickstarterDataAnalysis.yaml | 1 + projects/KnowledgeLab.yaml | 1 + projects/KnowledgeSys.yaml | 1 + projects/KoBIV.yaml | 1 + projects/LANL_Chennupati.yaml | 1 + projects/LArSoft.yaml | 1 + projects/LBNL_Jensen.yaml | 1 + projects/LEARN_CITeam.yaml | 1 + projects/LGAMUT.yaml | 1 + projects/LIGO.yaml | 1 + projects/LLNL_Sochat.yaml | 1 + projects/LSMSA_Burkman.yaml | 6 ++++-- projects/LSUHSC_CanavierLab.yaml | 1 + projects/LSUHSC_Lin.yaml | 1 + projects/LSUHSC_Yu.yaml | 1 + projects/LSU_Cox.yaml | 1 + projects/LSU_Wilson.yaml | 1 + projects/LancasterPPS.yaml | 1 + projects/Lariat.yaml | 1 + projects/Leaderbipartite.yaml | 1 + projects/Lg-Attenuation.yaml | 1 + projects/LiuLab.yaml | 1 + projects/LoyolaChicago_Li.yaml | 1 + projects/LyCfesc.yaml | 1 + projects/MCBI.yaml | 1 + projects/MCP.yaml | 1 + projects/MCSimulations.yaml | 1 + projects/MCSpinLiquid.yaml | 1 + projects/MEEG-group.yaml | 1 + projects/MFEKC.yaml | 1 + projects/MFProteins.yaml | 1 + projects/MINT.yaml | 1 + projects/MIT_Akiyama.yaml | 1 + projects/MIT_Chakraborty.yaml | 1 + projects/MIT_Choi.yaml | 1 + projects/MIT_Hill.yaml | 1 + projects/MIT_Kardar.yaml | 1 + projects/MIT_Takei.yaml | 1 + projects/MLResearch.yaml | 1 + projects/MMC_Leegon.yaml | 1 + projects/MMHA.yaml | 1 + projects/MOLLER.yaml | 1 + projects/MOmega.yaml | 1 + projects/MS-EinDRC.yaml | 1 + projects/MSKCC_Chodera.yaml | 1 + projects/MSSM_Ali.yaml | 1 + projects/MSState_2024_Chen.yaml | 2 +- projects/MSU_Berz.yaml | 1 + projects/MSU_Colbry.yaml | 1 + projects/MSU_ICERStaff.yaml | 1 + projects/MSU_Kerzendorf.yaml | 1 + projects/MSU_RCI.yaml | 1 + projects/MSU_Szilagyi.yaml | 1 + projects/MTU_Sha.yaml | 1 + projects/MTU_Zhang.yaml | 1 + projects/MaizeAminoAcids.yaml | 1 + projects/Mapping.yaml | 1 + projects/MarLab.yaml | 1 + projects/MedInf.yaml | 1 + projects/MiamiOH_Staff.yaml | 1 + projects/Michigan_ARCStaff.yaml | 1 + projects/Michigan_Alben.yaml | 1 + projects/Michigan_Bioinformatics.yaml | 1 + projects/Michigan_Brines.yaml | 1 + projects/Michigan_Jadidi.yaml | 1 + projects/Michigan_Jahn.yaml | 1 + projects/Michigan_Knowles.yaml | 1 + projects/Michigan_Riles.yaml | 1 + projects/Michigan_Schwarz.yaml | 1 + projects/Michigan_Seelbach.yaml | 1 + projects/Michigan_Viswanathan.yaml | 1 + projects/Michigan_Wells.yaml | 1 + projects/MicroBooNE.yaml | 1 + projects/Minerva.yaml | 1 + projects/Mines_BeEST.yaml | 1 + projects/Mines_CIARCStaff.yaml | 1 + projects/Mines_GomezGualdron.yaml | 1 + projects/Mines_Leach.yaml | 1 + projects/MiniWorkshopUC15.yaml | 1 + projects/Minos.yaml | 1 + projects/Mizzou_OSGTeaching.yaml | 1 + projects/Mizzou_RCSS.yaml | 1 + projects/MontgomeryCollege_Dillman.yaml | 1 + projects/Mu2e.yaml | 1 + projects/NASA_Nasipak.yaml | 1 + projects/NCOppSchool.yaml | 1 + projects/NCSU_2023_Hall | 9 --------- projects/NCSU_Barroso.yaml | 1 + projects/NCSU_Gray.yaml | 1 + projects/NCSU_Hall.yaml | 1 + projects/NCSU_Petersen.yaml | 1 + projects/NCSU_Staff.yaml | 1 + projects/NDSU-CCAST.yaml | 1 + projects/NDSU_Yellavajjala.yaml | 1 + projects/ND_Chen.yaml | 1 + projects/ND_Colon.yaml | 1 + projects/ND_Lalor.yaml | 1 + projects/NEESTools.yaml | 1 + projects/NESCent.yaml | 1 + projects/NGNDA.yaml | 1 + projects/NIAID_TBPortals.yaml | 1 + projects/NII.yaml | 1 + projects/NIST_CTCMS.yaml | 1 + projects/NJIT_Nadim.yaml | 1 + projects/NMSU_Lawson.yaml | 1 + projects/NMSU_Sievert.yaml | 3 ++- projects/NMSU_SpinQuest.yaml | 1 + projects/NMSU_staff.yaml | 1 + projects/NOAA_Bell.yaml | 1 + projects/NOAA_DucharmeBarth.yaml | 1 + projects/NOAA_Fisch.yaml | 1 + projects/NOAA_Vincent.yaml | 1 + projects/NOIRLab_Zhang.yaml | 1 + projects/NRELMatDB.yaml | 1 + projects/NSDF.yaml | 1 + projects/NSHE_SCS.yaml | 1 + projects/NSLS2ID.yaml | 1 + projects/NSNM.yaml | 1 + projects/NWChem.yaml | 1 + projects/NYU_Fund.yaml | 1 + projects/NapusGenome.yaml | 1 + projects/NeoflAnnot.yaml | 1 + projects/NeurOscillation.yaml | 1 + projects/NeuroscienceGateway.yaml | 1 + projects/NichollsState_Whitaker.yaml | 1 + projects/Nipyperegtest.yaml | 1 + projects/Northeastern_RC.yaml | 1 + projects/NorthwesternMed_Yadav.yaml | 2 +- projects/Nova.yaml | 1 + projects/OHSU_Katamreddy.yaml | 1 + projects/ORISSWarp.yaml | 1 + projects/OSG-CSC00100.yaml | 1 + projects/OSG-Staff.yaml | 1 + projects/OSGOpsTrain.yaml | 1 + projects/OSGUserSchool2022.yaml | 1 + projects/OSGUserTrainingPilot.yaml | 1 + projects/OSG_SoftwareInventory.yaml | 1 + projects/OSURHIT.yaml | 1 + projects/OSU_Weinberg.yaml | 1 + projects/OTPCand0vbb.yaml | 1 + projects/Orbiter.yaml | 1 + projects/OregonState_Simon.yaml | 1 + projects/P0-LBNE.yaml | 1 + projects/PBOSD.yaml | 1 + projects/PCFOSGUCSD.yaml | 1 + projects/PNGtemplate.yaml | 1 + projects/POLARBEAR.yaml | 1 + projects/PRP.yaml | 1 + projects/PRP_Defanti.yaml | 3 ++- projects/PRTH.yaml | 1 + projects/PSFmodeling.yaml | 1 + projects/PSI_Kaib.yaml | 1 + projects/PSU_Anandakrishnan.yaml | 1 + projects/PSU_Chen.yaml | 1 + projects/PSU_Kennea.yaml | 1 + projects/PSU_Rechtsman.yaml | 1 + projects/PSU_Staff.yaml | 1 + projects/PSU_Yamamoto.yaml | 1 + projects/PTMC.yaml | 1 + projects/PainDrugs.yaml | 1 + projects/PanEn.yaml | 1 + projects/Paniceae-trans.yaml | 1 + projects/PathSpaceHMC.yaml | 1 + projects/PegasusTraining.yaml | 1 + projects/PennState_Hanna.yaml | 1 + projects/PercARsolar.yaml | 1 + projects/Perchlorate.yaml | 1 + projects/Pheno.yaml | 1 + projects/Phylo.yaml | 1 + projects/Phylogenomics.yaml | 1 + projects/Pitt_Aizenstein.yaml | 1 + projects/Pitt_Koes.yaml | 1 + projects/PixleyLab.yaml | 1 + projects/PlantBio.yaml | 1 + projects/PopDy.yaml | 1 + projects/PorousMaterials.yaml | 1 + projects/PortlandState_Feng.yaml | 1 + projects/PortlandState_OIT.yaml | 1 + projects/PreBioEvo.yaml | 1 + projects/Princeton_Jamieson.yaml | 1 + projects/ProbTracx.yaml | 1 + projects/ProtEvol.yaml | 1 + projects/ProtFolding.yaml | 1 + projects/Proteomics.yaml | 1 + projects/Purdue_Aggarwal.yaml | 1 + projects/QCArchive_Smith.yaml | 1 + projects/QEvolBiol.yaml | 1 + projects/QGIS.yaml | 1 + projects/QMC.yaml | 1 + projects/QuantEvol.yaml | 1 + projects/RADICAL.yaml | 1 + projects/RDCEP.yaml | 1 + projects/REDTOP.yaml | 1 + projects/RIT.yaml | 1 + projects/RIT_KGCEval.yaml | 1 + projects/RIT_ResearchComputing.yaml | 1 + projects/RIT_Tu.yaml | 1 + projects/RPI_Brown.yaml | 1 + projects/Radlife.yaml | 1 + projects/ReABuncherRing.yaml | 1 + projects/RicePhenomics.yaml | 1 + projects/Rice_AjoFranklin.yaml | 1 + projects/Rice_Fox.yaml | 1 + projects/Rice_Li.yaml | 1 + projects/Rice_Mulligan.yaml | 1 + projects/Rice_Ogilvie.yaml | 1 + projects/Rochester_Askari.yaml | 1 + projects/Rochester_Franchini.yaml | 1 + projects/Rochester_Liu.yaml | 1 + projects/Rochester_Mongelli.yaml | 1 + projects/Rowan_Nguyen.yaml | 1 + projects/Rowan_NguyenT.yaml | 1 + projects/Rowan_Rasool.yaml | 1 + projects/RutgersOARC.yaml | 1 + projects/SBGrid.yaml | 1 + projects/SBND.yaml | 1 + projects/SBU_Jia.yaml | 1 + projects/SCEPCAL_Tully.yaml | 1 + projects/SC_Gothe.yaml | 1 + projects/SDCC.yaml | 1 + projects/SDEalgorithms.yaml | 1 + projects/SDSC-Staff.yaml | 1 + projects/SDSU_Edwards.yaml | 1 + projects/SDSU_Huangfu.yaml | 1 + projects/SDState_RCi.yaml | 1 + projects/SFCphases.yaml | 1 + projects/SINGE.yaml | 1 + projects/SIUE_Quinones.yaml | 1 + projects/SIUE_Staff.yaml | 1 + projects/SLAC_Nelson.yaml | 1 + projects/SMOTNT.yaml | 1 + projects/SMRCNTP.yaml | 1 + projects/SNOplus.yaml | 1 + projects/SO10GU.yaml | 1 + projects/SOL.yaml | 1 + projects/SOLID.yaml | 1 + projects/SPRI_Smith.yaml | 1 + projects/SSGAforCSP.yaml | 1 + projects/SUNYGeneseo_CIT.yaml | 1 + projects/SUNYUpstateMed_Schmitt.yaml | 1 + projects/SWC-OSG-IU15.yaml | 1 + projects/SWC-OSG-UC14.yaml | 1 + projects/SWITCHHawaii.yaml | 1 + projects/SWOSU_SOCCER.yaml | 1 + projects/SalemState_Poitevin.yaml | 1 + projects/Sandia_LandModel.yaml | 1 + projects/SbGenome.yaml | 1 + projects/SciSim.yaml | 1 + projects/SeaQuest.yaml | 1 + projects/Seattle_Herman.yaml | 1 + projects/Shortrunjobs.yaml | 1 + projects/SimCenter.yaml | 1 + projects/SimPrily.yaml | 1 + projects/Snowmass.yaml | 1 + projects/SourceCoding.yaml | 1 + projects/SoyKB.yaml | 1 + projects/SpatialModeling.yaml | 1 + projects/Specppxf.yaml | 1 + projects/Spelman_Tekle.yaml | 1 + projects/StSNE.yaml | 1 + projects/StanfordRCC.yaml | 1 + projects/Stanford_Das.yaml | 1 + projects/Stanford_Fletcher.yaml | 1 + projects/Stanford_Gilula.yaml | 1 + projects/Stanford_Zia.yaml | 1 + projects/Swift.yaml | 1 + projects/Syracuse_Brown.yaml | 1 + projects/{Syracuse_ITSRC.yal => Syracuse_ITSRC.yaml} | 1 + projects/Syracuse_Nitz.yaml | 1 + projects/SysBioEdu.yaml | 1 + projects/TAMUCT_Thron.yaml | 1 + projects/TAMU_Rathinam.yaml | 1 + projects/TAMUpheno.yaml | 1 + projects/TCGAPartCorr.yaml | 1 + projects/TCNJ_Science.yaml | 1 + projects/TDAI_Staff.yaml | 1 + projects/TDAstats.yaml | 1 + projects/TG-ASC130043.yaml | 1 + projects/TG-ASC180023.yaml | 1 + projects/TG-AST140088.yaml | 1 + projects/TG-AST150012.yaml | 1 + projects/TG-AST150033.yaml | 1 + projects/TG-AST150044.yaml | 1 + projects/TG-AST150046.yaml | 1 + projects/TG-AST160036.yaml | 1 + projects/TG-AST160046.yaml | 1 + projects/TG-AST170008.yaml | 1 + projects/TG-AST190031.yaml | 1 + projects/TG-AST190036.yaml | 1 + projects/TG-ATM130009.yaml | 1 + projects/TG-ATM130015.yaml | 1 + projects/TG-BCS110002.yaml | 1 + projects/TG-BIO180012.yaml | 1 + projects/TG-BIO200038.yaml | 1 + projects/TG-BIO210118.yaml | 1 + projects/TG-BIO210164.yaml | 1 + projects/TG-CCR130001.yaml | 1 + projects/TG-CCR140028.yaml | 1 + projects/TG-CDA080011.yaml | 1 + projects/TG-CDA100013.yaml | 1 + projects/TG-CHE130091.yaml | 1 + projects/TG-CHE130103.yaml | 1 + projects/TG-CHE140094.yaml | 1 + projects/TG-CHE140098.yaml | 1 + projects/TG-CHE140110.yaml | 1 + projects/TG-CHE150012.yaml | 1 + projects/TG-CHE170021.yaml | 1 + projects/TG-CHE190012.yaml | 1 + projects/TG-CHE190046.yaml | 1 + projects/TG-CHE200063.yaml | 1 + projects/TG-CHE200122.yaml | 1 + projects/TG-CHE210056.yaml | 1 + projects/TG-CHM210003.yaml | 1 + projects/TG-CIE160039.yaml | 1 + projects/TG-CIE170004.yaml | 1 + projects/TG-CIE170019.yaml | 1 + projects/TG-CIE170062.yaml | 1 + projects/TG-CIS210126.yaml | 1 + projects/TG-DBS170012.yaml | 1 + projects/TG-DDM160003.yaml | 1 + projects/TG-DEB140008.yaml | 1 + projects/TG-DMR130036.yaml | 1 + projects/TG-DMR140072.yaml | 1 + projects/TG-DMR160157.yaml | 1 + projects/TG-DMR180127.yaml | 1 + projects/TG-DMR190045.yaml | 1 + projects/TG-DMR190101.yaml | 1 + projects/TG-DMS120024.yaml | 1 + projects/TG-DMS150022.yaml | 1 + projects/TG-DMS180031.yaml | 1 + projects/TG-DMS190036.yaml | 1 + projects/TG-GEO150003.yaml | 1 + projects/TG-IBN130001.yaml | 1 + projects/TG-IRI130016.yaml | 1 + projects/TG-IRI160006.yaml | 1 + projects/TG-IRI160007.yaml | 1 + projects/TG-MAT200005.yaml | 1 + projects/TG-MCB060061N.yaml | 1 + projects/TG-MCB090163.yaml | 1 + projects/TG-MCB090174.yaml | 1 + projects/TG-MCB100109.yaml | 1 + projects/TG-MCB130072.yaml | 1 + projects/TG-MCB130135.yaml | 1 + projects/TG-MCB140088.yaml | 1 + projects/TG-MCB140160.yaml | 1 + projects/TG-MCB140211.yaml | 1 + projects/TG-MCB140232.yaml | 1 + projects/TG-MCB140268.yaml | 1 + projects/TG-MCB150001.yaml | 1 + projects/TG-MCB150090.yaml | 1 + projects/TG-MCB160020.yaml | 1 + projects/TG-MCB160027.yaml | 1 + projects/TG-MCB160069.yaml | 1 + projects/TG-MCB160192.yaml | 1 + projects/TG-MCB170126.yaml | 1 + projects/TG-MCB190026.yaml | 1 + projects/TG-MCB190187.yaml | 1 + projects/TG-MCH210037.yaml | 1 + projects/TG-OCE130029.yaml | 1 + projects/TG-OCE140013.yaml | 1 + projects/TG-PHY110015.yaml | 1 + projects/TG-PHY120014.yaml | 1 + projects/TG-PHY130048.yaml | 1 + projects/TG-PHY140048.yaml | 1 + projects/TG-PHY150040.yaml | 1 + projects/TG-PHY160001.yaml | 1 + projects/TG-PHY160031.yaml | 1 + projects/TG-PHY180007.yaml | 1 + projects/TG-PHY180035.yaml | 1 + projects/TG-PHY200004.yaml | 1 + projects/TG-PHY210083.yaml | 1 + projects/TG-PHY210092.yaml | 1 + projects/TG-PHY210094.yaml | 1 + projects/TG-PHY220009.yaml | 1 + projects/TG-PHY220016.yaml | 1 + projects/TG-SEE140006.yaml | 1 + projects/TG-SES090019.yaml | 1 + projects/TG-STA110011S.yaml | 1 + projects/TG-STA110014S.yaml | 1 + projects/TG-TRA090005.yaml | 1 + projects/TG-TRA100004.yaml | 1 + projects/TG-TRA110013.yaml | 1 + projects/TG-TRA120004.yaml | 1 + projects/TG-TRA120012.yaml | 1 + projects/TG-TRA120014.yaml | 1 + projects/TG-TRA120031.yaml | 5 +++-- projects/TG-TRA120041.yaml | 1 + projects/TG-TRA130003.yaml | 1 + projects/TG-TRA130007.yaml | 1 + projects/TG-TRA130011.yaml | 1 + projects/TG-TRA130030.yaml | 1 + projects/TG-TRA140029.yaml | 1 + projects/TG-TRA140036.yaml | 1 + projects/TG-TRA140043.yaml | 1 + projects/TG-TRA150015.yaml | 1 + projects/TG-TRA150018.yaml | 1 + projects/TG-TRA160027.yaml | 1 + projects/TG-TRA170047.yaml | 1 + projects/TG-TRA180011.yaml | 1 + projects/TG-TRA180032.yaml | 1 + projects/TG-TRA210040.yaml | 1 + projects/TG-TRA220011.yaml | 1 + projects/TG-TRA220014.yaml | 1 + projects/TG-TRA220017.yaml | 1 + projects/TNTTech_ITS.yaml | 1 + projects/TPOT.yaml | 1 + projects/TRNG.yaml | 1 + projects/Teamcore.yaml | 1 + projects/TechEX15.yaml | 1 + projects/TelescopeArray.yaml | 1 + projects/TexasAM_Alsmadi.yaml | 1 + projects/TexasAM_Fang.yaml | 1 + projects/TexasAM_Sun.yaml | 1 + projects/TexasTech_Corsi.yaml | 1 + projects/TextLab.yaml | 1 + projects/Training-ACE-NIAID.yaml | 1 + projects/TrappedOrbits.yaml | 1 + projects/Tufts_Hempstead.yaml | 1 + projects/Tufts_Levin.yaml | 1 + projects/Tutorial-PEARC20.yaml | 1 + projects/Tutorial-PEARC21.yaml | 1 + projects/U5Mortality.yaml | 1 + projects/UAB_ResearchComputing.yaml | 1 + projects/UAB_Thyme.yaml | 1 + projects/UAB_Worthey.yaml | 1 + projects/UADataAnalytics.yaml | 1 + projects/UAF_Aschwanden.yaml | 1 + projects/UALR_EAC.yaml | 1 + projects/UALR_Goodarzi.yaml | 5 +++-- projects/UALR_ITS.yaml | 1 + projects/UA_Kocot.yaml | 1 + projects/UA_OIT.yaml | 1 + projects/UC-Staff.yaml | 1 + projects/UCAnschutz_Langner.yaml | 1 + projects/UCBerkeley_Altman.yaml | 1 + projects/UCBerkeley_Zaletel.yaml | 1 + projects/UCDavis_Leveau.yaml | 1 + projects/UCDavis_Pickett.yaml | 1 + projects/UCDavis_Yarov-Yarovoy.yaml | 1 + projects/UCDenver_Butler.yaml | 1 + projects/UCDenver_Farguell.yaml | 1 + projects/UCDenver_Gaffney.yaml | 1 + projects/UCDenver_Hartke.yaml | 1 + projects/UCDenver_Kechris.yaml | 1 + projects/UCDenver_Mandel.yaml | 1 + projects/UCF_Bennett.yaml | 1 + projects/UCF_GRIT.yaml | 1 + projects/UCF_IT.yaml | 1 + projects/UCF_Khan.yaml | 1 + projects/UCF_Wiegand.yaml | 1 + projects/UCF_Zou.yaml | 1 + projects/UCHC_Mendes.yaml | 1 + projects/UCIAtlas.yaml | 1 + projects/UCI_Jeliazkov.yaml | 1 + projects/UCI_McnLab.yaml | 1 + projects/UCI_Sheng.yaml | 1 + projects/UCLA_Huang.yaml | 1 + projects/UCLA_OARC.yaml | 1 + projects/UCLA_Zhu.yaml | 1 + projects/UCMerced_Han.yaml | 1 + projects/UCR_ITSStaff.yaml | 1 + projects/UCSC_Williams.yaml | 1 + projects/UCSDEngEarthquake.yaml | 1 + projects/UCSDPhysAstroExp.yaml | 1 + projects/UCSDPhysAstroTheo.yaml | 1 + projects/UCSDPhysBio.yaml | 1 + projects/UCSDPhysPart.yaml | 1 + projects/UCSD_Arovas.yaml | 1 + projects/UCSD_Bradic.yaml | 1 + projects/UCSD_Du.yaml | 1 + projects/UCSD_Duarte.yaml | 1 + projects/UCSD_Elman.yaml | 1 + projects/UCSD_Fricker.yaml | 1 + projects/UCSD_George.yaml | 1 + projects/UCSD_Gilson.yaml | 1 + projects/UCSD_Goetz.yaml | 1 + projects/UCSD_Grover.yaml | 1 + projects/UCSD_Guiang.yaml | 1 + projects/UCSD_Hsiao.yaml | 1 + projects/UCSD_Kandes.yaml | 1 + projects/UCSD_Libgober.yaml | 1 + projects/UCSD_McGreevy.yaml | 1 + projects/UCSD_Pa.yaml | 1 + projects/UCSD_Politis.yaml | 1 + projects/UCSD_Rao.yaml | 1 + projects/UCSD_Rappel.yaml | 1 + projects/UCSD_ResearchIT.yaml | 1 + projects/UCSD_Shah.yaml | 1 + projects/UCSD_Wuerthwein_CMSUAF.yaml | 1 + projects/UCSD_Xu.yaml | 1 + projects/UCSD_YZYou.yaml | 1 + projects/UCSF_Manglik.yaml | 1 + projects/UChicago-RCC.yaml | 1 + projects/UChicago_Barton.yaml | 1 + projects/UChicago_Jonas.yaml | 1 + projects/UConn_Alpay.yaml | 1 + projects/UConn_Le.yaml | 1 + projects/UConn_Zhang.yaml | 1 + projects/UConn_Zhu.yaml | 1 + projects/UEdinburgh_DUNE.yaml | 1 + projects/UF_Hirschfeld.yaml | 1 + projects/UF_Staff.yaml | 1 + projects/UF_Strother.yaml | 1 + projects/UHITSACI.yaml | 1 + projects/UIowa_Reno.yaml | 1 + projects/UIowa_Sahin.yaml | 1 + projects/UIowa_Villarini.yaml | 1 + projects/UMCES_Fitzpatrick.yaml | 1 + projects/UMN_RF_Staff.yaml | 1 + projects/UMT_Warren.yaml | 1 + projects/UMaine_Vel.yaml | 1 + projects/UMassAmherst_Sloutsky.yaml | 1 + projects/UMassLowell_Delhommelle.yaml | 1 + projects/UMassLowell_Laycock.yaml | 1 + projects/UMich.yaml | 1 + projects/UMiss_Gupta.yaml | 1 + projects/UMiss_Stein.yaml | 1 + projects/UMissouri_Nada.yaml | 1 + projects/UMontana_Roy.yaml | 1 + projects/UMontana_Wheeler.yaml | 1 + projects/UNC-RESOLVE-photometry.yaml | 1 + projects/UNC_Drut.yaml | 1 + projects/UND_Delhommelle.yaml | 1 + projects/UNH-IMD.yaml | 1 + projects/UNI_Staff.yaml | 1 + projects/UNL_Cui.yaml | 1 + projects/UNL_Fuchs.yaml | 1 + projects/UNL_Hebets.yaml | 1 + projects/UNL_Howard.yaml | 1 + projects/UNL_Ramamurthy.yaml | 1 + projects/UNL_Stolle.yaml | 1 + projects/UNL_Weitzel.yaml | 1 + projects/UNL_Yang.yaml | 1 + projects/UNL_Zhang.yaml | 1 + projects/UNLbcrf.yaml | 1 + projects/UNM_Gulisija.yaml | 1 + projects/UNOmaha_Chase.yaml | 1 + projects/UOregon_Melgar.yaml | 1 + projects/UOregon_Shende.yaml | 1 + projects/UPCDOSAR.yaml | 1 + projects/UPRM_Ramos.yaml | 1 + projects/UPRRP-MR.yaml | 1 + projects/UPenn_Ramdas.yaml | 1 + projects/USC_CARC.yaml | 1 + projects/USC_Deelman.yaml | 1 + projects/USC_Rahbari.yaml | 1 + projects/USDA_Andorf.yaml | 1 + projects/USD_PHYS733.yaml | 1 + projects/USD_RCG.yaml | 1 + projects/USU_Kaundal.yaml | 1 + projects/USheffield_DUNE.yaml | 1 + projects/UTA_Cuntz.yaml | 1 + projects/UTA_Jones.yaml | 1 + projects/UTAustin_Shoemaker.yaml | 1 + projects/UTAustin_Zimmerman.yaml | 1 + projects/UTEP_DeBlasio.yaml | 1 + projects/UTEP_Moore.yaml | 1 + projects/UTK_Luettgau.yaml | 1 + projects/UTSA_Anantua.yaml | 1 + projects/UTSouthwestern_Lin.yaml | 1 + projects/UTulsa_Booth.yaml | 1 + projects/UWMadison_Banks.yaml | 1 + projects/UWMadison_Bechtol.yaml | 1 + projects/UWMadison_Chen.yaml | 1 + projects/UWMadison_Curtin.yaml | 1 + projects/UWMadison_DeLeon.yaml | 1 + projects/UWMadison_DeWerd.yaml | 1 + projects/UWMadison_Dopfer.yaml | 1 + projects/UWMadison_Ericksen.yaml | 1 + projects/UWMadison_Fredrickson.yaml | 1 + projects/UWMadison_Gitter.yaml | 1 + projects/UWMadison_Gutierrez.yaml | 1 + projects/UWMadison_Kaplan.yaml | 1 + projects/UWMadison_Keles.yaml | 1 + projects/UWMadison_Keller.yaml | 1 + projects/UWMadison_Kwan.yaml | 1 + projects/UWMadison_Li.yaml | 1 + projects/UWMadison_Livny.yaml | 1 + projects/UWMadison_McMillan.yaml | 1 + projects/UWMadison_Negrut.yaml | 1 + projects/UWMadison_Parks.yaml | 1 + projects/UWMadison_Paskewitz.yaml | 1 + projects/UWMadison_Payseur.yaml | 1 + projects/UWMadison_Pool.yaml | 1 + projects/UWMadison_Rebel.yaml | 1 + projects/UWMadison_Rui.yaml | 1 + projects/UWMadison_Skala.yaml | 1 + projects/UWMadison_Solis-Lemus.yaml | 1 + projects/UWMadison_Tang.yaml | 1 + projects/UWMadison_Vavilov.yaml | 1 + projects/UWMadison_Wei.yaml | 1 + projects/UWMadison_Weigel.yaml | 1 + projects/UWMadison_Wright.yaml | 1 + projects/UWMilwaukee_Yoon.yaml | 1 + projects/UW_deKok.yaml | 1 + projects/UserSchool2016.yaml | 1 + projects/Utah_Chipman.yaml | 1 + projects/Utah_Nelson.yaml | 1 + projects/VERITAS.yaml | 1 + projects/VT_Riexinger.yaml | 1 + projects/Vanderbilt_Gabella.yaml | 1 + projects/Vanderbilt_Paquet.yaml | 1 + projects/Venda_Arrey.yaml | 1 + projects/Villanova_Staff.yaml | 1 + projects/VolcanoTomography.yaml | 1 + projects/WCUPA_Ngo.yaml | 1 + projects/WEST.yaml | 1 + projects/WSU_3DHydro.yaml | 1 + projects/WUSTL_Harris.yaml | 1 + projects/Washington_Savage.yaml | 1 + projects/WayneStateU_Majumder.yaml | 1 + projects/WayneStateU_Pique-Regi.yaml | 1 + projects/WayneStateU_Pruneau.yaml | 1 + projects/WayneStateU_Staff.yaml | 1 + projects/WayneStateU_TDA.yaml | 1 + projects/WeNMR.yaml | 1 + projects/Webster_Suo.yaml | 1 + projects/WheatGenomics.yaml | 1 + projects/WichitaState_Hwang.yaml | 1 + projects/Workshop-RMACC21.yaml | 1 + projects/XSEDE_ECSS.yaml | 1 + projects/XSEDE_XCI.yaml | 1 + projects/XeTPC.yaml | 1 + projects/Yale_DeMartini.yaml | 1 + projects/Yale_RYang.yaml | 1 + projects/Yale_YCRC.yaml | 1 + projects/a1synchrony.yaml | 1 + projects/all.yaml | 1 + projects/aprime.yaml | 1 + projects/asurcosg.yaml | 1 + projects/atlas.org.Jet-EtMiss.yaml | 1 + projects/atlas.org.Tau.yaml | 1 + projects/atlas.org.albany.yaml | 1 + projects/atlas.org.anl.yaml | 1 + projects/atlas.org.arizona.yaml | 1 + projects/atlas.org.bnl.yaml | 1 + projects/atlas.org.brandeis.yaml | 1 + projects/atlas.org.bu.yaml | 1 + projects/atlas.org.columbia.yaml | 1 + projects/atlas.org.duke.yaml | 1 + projects/atlas.org.fresnostate.yaml | 1 + projects/atlas.org.hamptonu.yaml | 1 + projects/atlas.org.harvard.yaml | 1 + projects/atlas.org.iastate.yaml | 1 + projects/atlas.org.illinois.yaml | 1 + projects/atlas.org.indiana.yaml | 1 + projects/atlas.org.latech.yaml | 1 + projects/atlas.org.lbnl.yaml | 1 + projects/atlas.org.louisville.yaml | 1 + projects/atlas.org.mit.yaml | 1 + projects/atlas.org.msu.yaml | 1 + projects/atlas.org.niu.yaml | 1 + projects/atlas.org.nyu.yaml | 1 + projects/atlas.org.okstate.yaml | 1 + projects/atlas.org.osu.yaml | 1 + projects/atlas.org.ou.yaml | 1 + projects/atlas.org.pitt.yaml | 1 + projects/atlas.org.sc.yaml | 1 + projects/atlas.org.slac.yaml | 1 + projects/atlas.org.smu.yaml | 1 + projects/atlas.org.stonybrook.yaml | 1 + projects/atlas.org.tufts.yaml | 1 + projects/atlas.org.uchicago.yaml | 1 + projects/atlas.org.uci.yaml | 1 + projects/atlas.org.ucsc.yaml | 1 + projects/atlas.org.uiowa.yaml | 1 + projects/atlas.org.umass.yaml | 1 + projects/atlas.org.unm.yaml | 1 + projects/atlas.org.uoregon.yaml | 1 + projects/atlas.org.upenn.yaml | 1 + projects/atlas.org.uta.yaml | 1 + projects/atlas.org.utdallas.yaml | 1 + projects/atlas.org.utexas.yaml | 1 + projects/atlas.org.washington.yaml | 1 + projects/atlas.org.wisc.yaml | 1 + projects/atlas.org.yale.yaml | 1 + projects/atlas.wg.B-Physics.yaml | 1 + projects/atlas.wg.E-Gamma.yaml | 1 + projects/atlas.wg.Exotics.yaml | 1 + projects/atlas.wg.Flavour-Tagging.yaml | 1 + projects/atlas.wg.Heavy-Ions.yaml | 1 + projects/atlas.wg.Higgs.yaml | 1 + projects/atlas.wg.Inner-Tracking.yaml | 1 + projects/atlas.wg.Monte-Carlo.yaml | 1 + projects/atlas.wg.SUSY.yaml | 1 + projects/atlas.wg.Standard-Model.yaml | 1 + projects/atlas.wg.Top.yaml | 1 + projects/atlas.wg.USAtlas-TechSupport.yaml | 1 + projects/atlas.wg.combined-muon.yaml | 1 + projects/bdttpdblend.yaml | 1 + projects/bobbot.yaml | 1 + projects/boostconf.yaml | 1 + projects/brainlifeio.yaml | 1 + projects/cellpainting.yaml | 1 + projects/cgdna.yaml | 1 + projects/cgl.yaml | 1 + projects/chemml.yaml | 1 + projects/clarkson_mondal.yaml | 1 + projects/clas12MC.yaml | 1 + projects/cms-org-baylor.yaml | 1 + projects/cms-org-cern.yaml | 1 + projects/cms-org-nd.yaml | 1 + projects/cms.org.baylor.yaml | 1 + projects/cms.org.brown.yaml | 1 + projects/cms.org.bu.yaml | 1 + projects/cms.org.buffalo.yaml | 1 + projects/cms.org.caltech.yaml | 1 + projects/cms.org.cern.yaml | 1 + projects/cms.org.cmu.yaml | 1 + projects/cms.org.colorado.yaml | 1 + projects/cms.org.cornell.yaml | 1 + projects/cms.org.fairfield.yaml | 1 + projects/cms.org.fit.yaml | 1 + projects/cms.org.fiu.yaml | 1 + projects/cms.org.fnal.yaml | 1 + projects/cms.org.fsu.yaml | 1 + projects/cms.org.jhu.yaml | 1 + projects/cms.org.ksu.yaml | 1 + projects/cms.org.ku.yaml | 1 + projects/cms.org.llnl.yaml | 1 + projects/cms.org.mit.yaml | 1 + projects/cms.org.nd.yaml | 1 + projects/cms.org.neu.yaml | 1 + projects/cms.org.northwestern.yaml | 1 + projects/cms.org.ohiostate.yaml | 1 + projects/cms.org.olemiss.yaml | 1 + projects/cms.org.princeton.yaml | 1 + projects/cms.org.purdue.yaml | 1 + projects/cms.org.purduecal.yaml | 1 + projects/cms.org.rice.yaml | 1 + projects/cms.org.rochester.yaml | 1 + projects/cms.org.rockefeller.yaml | 1 + projects/cms.org.rutgers.yaml | 1 + projects/cms.org.tamu.yaml | 1 + projects/cms.org.ttu.yaml | 1 + projects/cms.org.ua.yaml | 1 + projects/cms.org.ucdavis.yaml | 1 + projects/cms.org.ucla.yaml | 1 + projects/cms.org.ucr.yaml | 1 + projects/cms.org.ucsb.yaml | 1 + projects/cms.org.ucsd.yaml | 1 + projects/cms.org.ufl.yaml | 1 + projects/cms.org.uic.yaml | 1 + projects/cms.org.uiowa.yaml | 1 + projects/cms.org.umd.yaml | 1 + projects/cms.org.umn.yaml | 1 + projects/cms.org.unl.yaml | 1 + projects/cms.org.upr.yaml | 1 + projects/cms.org.utk.yaml | 1 + projects/cms.org.vanderbilt.yaml | 1 + projects/cms.org.virginia.yaml | 1 + projects/cms.org.wayne.yaml | 1 + projects/cms.org.wisc.yaml | 1 + projects/colorcat.yaml | 1 + projects/compcomb.yaml | 1 + projects/cyverse.yaml | 1 + projects/dVdT.yaml | 1 + projects/darkside.yaml | 1 + projects/ddpscbioinfo.yaml | 1 + projects/duke-4fermion.yaml | 1 + projects/duke-CMT.yaml | 1 + projects/duke-EfficientScore.yaml | 1 + projects/duke-SWC-Duke15.yaml | 1 + projects/duke-WaterCrystal.yaml | 1 + projects/duke-bgswgs.yaml | 1 + projects/duke-boolnet.yaml | 1 + projects/duke-campus.yaml | 1 + projects/duke-staff.yaml | 1 + projects/duke-swcstaff.yaml | 1 + projects/duke.lsst.yaml | 1 + projects/duke.ppsa.yaml | 1 + projects/dynamo.yaml | 1 + projects/ePIC.yaml | 1 + projects/eht.yaml | 1 + projects/electrolytes.yaml | 1 + projects/errorstudy.yaml | 1 + projects/evolmarinva.yaml | 1 + projects/extinction.yaml | 1 + projects/fluidsim.yaml | 1 + projects/freesurfer.yaml | 1 + projects/fsuFin.yaml | 1 + projects/g4PSI.yaml | 1 + projects/gem5.yaml | 1 + projects/glass.yaml | 1 + projects/gm2.yaml | 1 + projects/gridsgenomes.yaml | 1 + projects/hABCNWHI.yaml | 1 + projects/holosim.yaml | 1 + projects/icarus.yaml | 1 + projects/idTrackerParallel.yaml | 1 + projects/lftsim.yaml | 1 + projects/lychrelsearch.yaml | 1 + projects/mab.yaml | 1 + projects/macsSwigmodels.yaml | 1 + projects/mars.yaml | 1 + projects/megaprobe.yaml | 1 + projects/microphases.yaml | 1 + projects/molcryst.yaml | 1 + projects/mortality.yaml | 1 + projects/mwt2-staff.yaml | 1 + projects/nEXO.yaml | 1 + projects/ncidft.yaml | 1 + projects/networkdist.yaml | 1 + projects/nicesims.yaml | 1 + projects/nnmbl.yaml | 1 + projects/nsides.yaml | 1 + projects/numfpi.yaml | 1 + projects/oclab.yaml | 1 + projects/osg.Ceser.yaml | 1 + projects/panorama.yaml | 1 + projects/peers.yaml | 1 + projects/pipediffusion.yaml | 1 + projects/plantGRN.yaml | 1 + projects/polyHERV.yaml | 1 + projects/polymer.yaml | 1 + projects/popage.yaml | 1 + projects/poromech.yaml | 1 + projects/psims.yaml | 1 + projects/psychosisfmri.yaml | 1 + projects/rencinrig.yaml | 1 + projects/retrovision.yaml | 1 + projects/sPHENIX.yaml | 1 + projects/scicomp-analytics.yaml | 1 + projects/selfassembly.yaml | 1 + projects/seq2fun.yaml | 1 + projects/snada.yaml | 1 + projects/snasim.yaml | 1 + projects/spt.all.yaml | 1 + projects/srccoding.yaml | 1 + projects/steward.yaml | 1 + projects/sugwg.yaml | 1 + projects/sweeps.yaml | 1 + projects/swipnanobio.yaml | 1 + projects/sykclusters.yaml | 1 + projects/uchicago.yaml | 1 + projects/unlcpass.yaml | 1 + projects/velev.yaml | 1 + projects/wrench.yaml | 1 + projects/xenon.yaml | 1 + projects/xenon1t.yaml | 1 + projects/z2dqmc.yaml | 1 + src/schema/miscproject.xsd | 1 + 1128 files changed, 1143 insertions(+), 24 deletions(-) delete mode 100644 projects/NCSU_2023_Hall rename projects/{Syracuse_ITSRC.yal => Syracuse_ITSRC.yaml} (83%) diff --git a/projects/ACE_NIAID.yaml b/projects/ACE_NIAID.yaml index cccc20a6b..8bc9cab9b 100644 --- a/projects/ACE_NIAID.yaml +++ b/projects/ACE_NIAID.yaml @@ -17,3 +17,4 @@ ID: '782' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/451cgt72wj62' diff --git a/projects/AMFORA.yaml b/projects/AMFORA.yaml index 96a7652bb..9df4a9511 100644 --- a/projects/AMFORA.yaml +++ b/projects/AMFORA.yaml @@ -9,3 +9,4 @@ PIName: Ian Foster Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/AMNH.astro.yaml b/projects/AMNH.astro.yaml index 522084c39..8449aaf08 100644 --- a/projects/AMNH.astro.yaml +++ b/projects/AMNH.astro.yaml @@ -9,3 +9,4 @@ ID: '686' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/em2w05s9c1uc' diff --git a/projects/AMNH.yaml b/projects/AMNH.yaml index e735ac695..0ed5ff398 100644 --- a/projects/AMNH.yaml +++ b/projects/AMNH.yaml @@ -9,3 +9,4 @@ ID: '534' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/em2w05s9c1uc' diff --git a/projects/AMNH_Burbrink.yaml b/projects/AMNH_Burbrink.yaml index 8759e58f0..4b6fa9979 100644 --- a/projects/AMNH_Burbrink.yaml +++ b/projects/AMNH_Burbrink.yaml @@ -9,3 +9,4 @@ ID: '829' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/em2w05s9c1uc' diff --git a/projects/AMNH_MacLow.yaml b/projects/AMNH_MacLow.yaml index 00d1ce38e..91b3a2949 100644 --- a/projects/AMNH_MacLow.yaml +++ b/projects/AMNH_MacLow.yaml @@ -8,3 +8,4 @@ PIName: Mordecai-Mark Mac Low Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/em2w05s9c1uc' diff --git a/projects/AMNH_Smith.yaml b/projects/AMNH_Smith.yaml index 6e0d63a8a..a30d79ad9 100644 --- a/projects/AMNH_Smith.yaml +++ b/projects/AMNH_Smith.yaml @@ -9,3 +9,4 @@ ID: '583' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/em2w05s9c1uc' diff --git a/projects/AMS.yaml b/projects/AMS.yaml index a97fdd37a..40a4cf98d 100644 --- a/projects/AMS.yaml +++ b/projects/AMS.yaml @@ -7,3 +7,4 @@ PIName: Baosong Shan Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/ASPU.yaml b/projects/ASPU.yaml index d5c9bf51d..2401a1169 100644 --- a/projects/ASPU.yaml +++ b/projects/ASPU.yaml @@ -7,3 +7,4 @@ PIName: ilyoup kwak Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3chofmlz7p5r' diff --git a/projects/ASU-CFD.yaml b/projects/ASU-CFD.yaml index 0f978f3e9..8e2007adf 100644 --- a/projects/ASU-CFD.yaml +++ b/projects/ASU-CFD.yaml @@ -9,3 +9,4 @@ ID: '535' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/ASU_CoMSESNet.yaml b/projects/ASU_CoMSESNet.yaml index 246424e4f..c2dacf5d1 100644 --- a/projects/ASU_CoMSESNet.yaml +++ b/projects/ASU_CoMSESNet.yaml @@ -7,3 +7,4 @@ PIName: Michael Barton Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/ASU_EvolutionMedicineIT.yaml b/projects/ASU_EvolutionMedicineIT.yaml index d7a933a3c..989f2b291 100644 --- a/projects/ASU_EvolutionMedicineIT.yaml +++ b/projects/ASU_EvolutionMedicineIT.yaml @@ -9,3 +9,4 @@ ID: '675' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/ASU_Jacobs.yaml b/projects/ASU_Jacobs.yaml index 6ac3211b3..c4dbfed9d 100644 --- a/projects/ASU_Jacobs.yaml +++ b/projects/ASU_Jacobs.yaml @@ -9,3 +9,4 @@ ID: '731' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/ASU_Ozkan.yaml b/projects/ASU_Ozkan.yaml index a0fc54bb5..d30dc1723 100644 --- a/projects/ASU_Ozkan.yaml +++ b/projects/ASU_Ozkan.yaml @@ -13,3 +13,4 @@ ID: '802' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/ASU_Pfeifer.yaml b/projects/ASU_Pfeifer.yaml index 02dd4b7cd..430c2c19e 100644 --- a/projects/ASU_Pfeifer.yaml +++ b/projects/ASU_Pfeifer.yaml @@ -9,3 +9,4 @@ ID: '625' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/ASU_RCStaff.yaml b/projects/ASU_RCStaff.yaml index c8cf41787..80e61f3da 100644 --- a/projects/ASU_RCStaff.yaml +++ b/projects/ASU_RCStaff.yaml @@ -7,3 +7,4 @@ PIName: Douglas M. Jennewein Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/ASU_Singharoy.yaml b/projects/ASU_Singharoy.yaml index d42249cf0..1252042c3 100644 --- a/projects/ASU_Singharoy.yaml +++ b/projects/ASU_Singharoy.yaml @@ -9,3 +9,4 @@ ID: '629' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/AdHocComm.yaml b/projects/AdHocComm.yaml index b926ca82b..6c04e353f 100644 --- a/projects/AdHocComm.yaml +++ b/projects/AdHocComm.yaml @@ -8,3 +8,4 @@ PIName: Trevor Santarra Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/n6cai04882ca' diff --git a/projects/AfricanSchool.yaml b/projects/AfricanSchool.yaml index 004364483..604daa465 100644 --- a/projects/AfricanSchool.yaml +++ b/projects/AfricanSchool.yaml @@ -8,3 +8,4 @@ PIName: Rob Quick Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uws6kivcttuc' diff --git a/projects/AlGDock.yaml b/projects/AlGDock.yaml index f8dbb1270..b55b11dc6 100644 --- a/projects/AlGDock.yaml +++ b/projects/AlGDock.yaml @@ -15,3 +15,4 @@ PIName: David Minh Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3jn3w1ccwxwd' diff --git a/projects/Albany_DAES.yaml b/projects/Albany_DAES.yaml index 1f9e4aebf..957247940 100644 --- a/projects/Albany_DAES.yaml +++ b/projects/Albany_DAES.yaml @@ -8,3 +8,4 @@ PIName: Ryan Torn Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/m9adt6gcsr8c' diff --git a/projects/AllenISD_Cheon.yaml b/projects/AllenISD_Cheon.yaml index 3a93158d6..47be7ee0e 100644 --- a/projects/AllenISD_Cheon.yaml +++ b/projects/AllenISD_Cheon.yaml @@ -7,3 +7,4 @@ PIName: Jimin Cheon Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: "https://osg-htc.org/iid/viwzcsq6tepm" diff --git a/projects/AmorphousOrder.yaml b/projects/AmorphousOrder.yaml index 60c480a1e..4134cf10c 100644 --- a/projects/AmorphousOrder.yaml +++ b/projects/AmorphousOrder.yaml @@ -16,3 +16,4 @@ PIName: Patrick Charbonneau Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/AnimalSocialNetworks.yaml b/projects/AnimalSocialNetworks.yaml index 92705723a..6deed4935 100644 --- a/projects/AnimalSocialNetworks.yaml +++ b/projects/AnimalSocialNetworks.yaml @@ -36,3 +36,4 @@ PIName: Erol Akcay Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nv2rjrft01gg' diff --git a/projects/Arcadia_Curotto.yaml b/projects/Arcadia_Curotto.yaml index 3871a61ee..529c1233d 100644 --- a/projects/Arcadia_Curotto.yaml +++ b/projects/Arcadia_Curotto.yaml @@ -9,3 +9,4 @@ ID: '621' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/c6ehbi2dyh8h' diff --git a/projects/Argoneut.yaml b/projects/Argoneut.yaml index 72e047481..924ba0676 100644 --- a/projects/Argoneut.yaml +++ b/projects/Argoneut.yaml @@ -7,3 +7,4 @@ PIName: Joe Boyd Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/Arizona_Chan_Steward.yaml b/projects/Arizona_Chan_Steward.yaml index 04817c2e9..16687fabf 100644 --- a/projects/Arizona_Chan_Steward.yaml +++ b/projects/Arizona_Chan_Steward.yaml @@ -4,3 +4,4 @@ Description: Scalable astronomical data analytics for the Department of Astronom FieldOfScience: Physics Organization: University of Arizona PIName: Chi-kwan Chan +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/Arizona_DataScienceInstitute.yaml b/projects/Arizona_DataScienceInstitute.yaml index 3d3f56920..e73e3e181 100644 --- a/projects/Arizona_DataScienceInstitute.yaml +++ b/projects/Arizona_DataScienceInstitute.yaml @@ -9,3 +9,4 @@ PIName: Nirav Merchant Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/Arizona_Males.yaml b/projects/Arizona_Males.yaml index 707af6fd5..f41f232ab 100644 --- a/projects/Arizona_Males.yaml +++ b/projects/Arizona_Males.yaml @@ -9,3 +9,4 @@ ID: '785' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/Arizona_Paschalidis.yaml b/projects/Arizona_Paschalidis.yaml index 9ee2184b1..636b852d7 100644 --- a/projects/Arizona_Paschalidis.yaml +++ b/projects/Arizona_Paschalidis.yaml @@ -9,3 +9,4 @@ ID: '648' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/Arkansas_Nelson.yaml b/projects/Arkansas_Nelson.yaml index cc9c50584..9901fd6e2 100644 --- a/projects/Arkansas_Nelson.yaml +++ b/projects/Arkansas_Nelson.yaml @@ -7,3 +7,4 @@ PIName: Alexander Nelson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/78b3lgmajszi' diff --git a/projects/Arkansas_UITSStaff.yaml b/projects/Arkansas_UITSStaff.yaml index fe22a8dd6..fb50b4224 100644 --- a/projects/Arkansas_UITSStaff.yaml +++ b/projects/Arkansas_UITSStaff.yaml @@ -7,3 +7,4 @@ PIName: Don DuRousseau Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/78b3lgmajszi' diff --git a/projects/AtlasConnect.yaml b/projects/AtlasConnect.yaml index d5d7ff30c..0a50d9ba8 100644 --- a/projects/AtlasConnect.yaml +++ b/projects/AtlasConnect.yaml @@ -12,3 +12,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/Auburn_Hauck.yaml b/projects/Auburn_Hauck.yaml index 10fc0d430..e235b2c8b 100644 --- a/projects/Auburn_Hauck.yaml +++ b/projects/Auburn_Hauck.yaml @@ -7,3 +7,4 @@ PIName: Ruediger Hauck Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q6cff6xb6a0h' diff --git a/projects/BAERI_Bejaoui.yaml b/projects/BAERI_Bejaoui.yaml index 49ac237de..03954a623 100644 --- a/projects/BAERI_Bejaoui.yaml +++ b/projects/BAERI_Bejaoui.yaml @@ -8,3 +8,4 @@ PIName: Salma Bejaoui Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/za7yf0nds92q' diff --git a/projects/BCBB_NIAID.yaml b/projects/BCBB_NIAID.yaml index 9dfd584ea..f5f02168b 100644 --- a/projects/BCBB_NIAID.yaml +++ b/projects/BCBB_NIAID.yaml @@ -7,3 +7,4 @@ PIName: Darrell Hurt Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/451cgt72wj62' diff --git a/projects/BCH_Holt.yaml b/projects/BCH_Holt.yaml index 4b5d3b1fe..2b98a2a1c 100644 --- a/projects/BCH_Holt.yaml +++ b/projects/BCH_Holt.yaml @@ -8,3 +8,4 @@ ID: '609' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4lvq3daxyc55' diff --git a/projects/BCH_ResearchComputing.yaml b/projects/BCH_ResearchComputing.yaml index 30a195538..6f19995bc 100644 --- a/projects/BCH_ResearchComputing.yaml +++ b/projects/BCH_ResearchComputing.yaml @@ -8,3 +8,4 @@ ID: '559' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4lvq3daxyc55' diff --git a/projects/BC_Grubb.yaml b/projects/BC_Grubb.yaml index c42acf2b8..780a51571 100644 --- a/projects/BC_Grubb.yaml +++ b/projects/BC_Grubb.yaml @@ -9,3 +9,4 @@ ID: '830' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/lpknq8oygi06' diff --git a/projects/BC_Savage.yaml b/projects/BC_Savage.yaml index 15d03e0fd..5d7e6c19c 100644 --- a/projects/BC_Savage.yaml +++ b/projects/BC_Savage.yaml @@ -7,3 +7,4 @@ PIName: Brian Savage Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/lpknq8oygi06' diff --git a/projects/BGAgenomics.yaml b/projects/BGAgenomics.yaml index 948af729e..6762dce6b 100644 --- a/projects/BGAgenomics.yaml +++ b/projects/BGAgenomics.yaml @@ -7,3 +7,4 @@ PIName: Sucheta Tripathy Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/6ycithqdf09t' diff --git a/projects/BNL-PHENIX.yaml b/projects/BNL-PHENIX.yaml index b5e8f4678..b7478548a 100644 --- a/projects/BNL-PHENIX.yaml +++ b/projects/BNL-PHENIX.yaml @@ -8,3 +8,4 @@ PIName: Matthew Snowball Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/BNLPET.yaml b/projects/BNLPET.yaml index 8737617c7..5773fe9c1 100644 --- a/projects/BNLPET.yaml +++ b/projects/BNLPET.yaml @@ -11,3 +11,4 @@ PIName: Martin Purschke Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/BNL_Schenke.yaml b/projects/BNL_Schenke.yaml index 50c8d5423..93452f599 100644 --- a/projects/BNL_Schenke.yaml +++ b/projects/BNL_Schenke.yaml @@ -9,3 +9,4 @@ ID: '720' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/BNL_Venugopalan.yaml b/projects/BNL_Venugopalan.yaml index d9e13ab14..65fecdbc0 100644 --- a/projects/BNL_Venugopalan.yaml +++ b/projects/BNL_Venugopalan.yaml @@ -5,3 +5,4 @@ Department: Physics FieldOfScience: Physics Organization: Brookhaven National Laboratory PIName: Raju Venugopalan +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/BRDMS.yaml b/projects/BRDMS.yaml index 6435b23c0..416f61631 100644 --- a/projects/BRDMS.yaml +++ b/projects/BRDMS.yaml @@ -8,3 +8,4 @@ PIName: XUETONG ZHAI Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2ayx10b74xua' diff --git a/projects/BU_Mu2e.yaml b/projects/BU_Mu2e.yaml index f1349df4d..6a28d129b 100644 --- a/projects/BU_Mu2e.yaml +++ b/projects/BU_Mu2e.yaml @@ -9,3 +9,4 @@ ID: '825' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/drujeuinri1g' diff --git a/projects/BYUI_Becerril.yaml b/projects/BYUI_Becerril.yaml index 975a7b85f..df76e6b20 100644 --- a/projects/BYUI_Becerril.yaml +++ b/projects/BYUI_Becerril.yaml @@ -7,3 +7,4 @@ PIName: Héctor A. Becerril Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/vgfpbpee9lqo' diff --git a/projects/BakerLab.yaml b/projects/BakerLab.yaml index ed0ab2a9a..945741fea 100644 --- a/projects/BakerLab.yaml +++ b/projects/BakerLab.yaml @@ -7,3 +7,4 @@ PIName: David Baker Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/8lpmoeouw66o' diff --git a/projects/BaylorCM_Hirschi.yaml b/projects/BaylorCM_Hirschi.yaml index a7d421356..1866d1396 100644 --- a/projects/BaylorCM_Hirschi.yaml +++ b/projects/BaylorCM_Hirschi.yaml @@ -9,3 +9,4 @@ ID: '726' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gk0vqx4uormq' diff --git a/projects/BetaDecay.yaml b/projects/BetaDecay.yaml index dfeddad53..24772ed2c 100644 --- a/projects/BetaDecay.yaml +++ b/projects/BetaDecay.yaml @@ -7,3 +7,4 @@ PIName: Liang Yang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/10izzs5e7v1r' diff --git a/projects/BioAlgorithms.yaml b/projects/BioAlgorithms.yaml index 607c01659..dc989a809 100644 --- a/projects/BioAlgorithms.yaml +++ b/projects/BioAlgorithms.yaml @@ -7,3 +7,4 @@ PIName: Natasha Pavlovikj Sponsor: VirtualOrganization: Name: HCC +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/BioGraph.yaml b/projects/BioGraph.yaml index 24861d0f1..6da28e8f8 100644 --- a/projects/BioGraph.yaml +++ b/projects/BioGraph.yaml @@ -7,3 +7,4 @@ PIName: Alex Feltus Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ricyf18amt49' diff --git a/projects/BioMolMach.yaml b/projects/BioMolMach.yaml index ff71089bc..befddfb41 100644 --- a/projects/BioMolMach.yaml +++ b/projects/BioMolMach.yaml @@ -16,3 +16,4 @@ PIName: Benoit Roux Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/BioStat.yaml b/projects/BioStat.yaml index bcd7209b5..37921ac98 100644 --- a/projects/BioStat.yaml +++ b/projects/BioStat.yaml @@ -8,3 +8,4 @@ PIName: Janice McCarthy Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/Bioconductor.yaml b/projects/Bioconductor.yaml index 81050cf5f..c8da5d57a 100644 --- a/projects/Bioconductor.yaml +++ b/projects/Bioconductor.yaml @@ -8,3 +8,4 @@ PIName: Martin Morgan Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gse6n0vl8u5c' diff --git a/projects/BiomedInfo.yaml b/projects/BiomedInfo.yaml index e6147b989..6a375ae88 100644 --- a/projects/BiomedInfo.yaml +++ b/projects/BiomedInfo.yaml @@ -8,3 +8,4 @@ PIName: Erik Wright Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2ayx10b74xua' diff --git a/projects/Biomim.yaml b/projects/Biomim.yaml index 6fc9e03db..354df4d6f 100644 --- a/projects/Biomim.yaml +++ b/projects/Biomim.yaml @@ -10,3 +10,4 @@ PIName: Puja Goyal Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/53bzboawpaq9' diff --git a/projects/BiostatsChapple.yaml b/projects/BiostatsChapple.yaml index d142ba9fe..7baa6ecd3 100644 --- a/projects/BiostatsChapple.yaml +++ b/projects/BiostatsChapple.yaml @@ -9,3 +9,4 @@ ID: '532' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/9idmt4uz33c1' diff --git a/projects/BrighamAndWomens_Baratono.yaml b/projects/BrighamAndWomens_Baratono.yaml index c52d5c1b0..95d1c1b0e 100644 --- a/projects/BrighamAndWomens_Baratono.yaml +++ b/projects/BrighamAndWomens_Baratono.yaml @@ -3,3 +3,4 @@ Department: Neurology FieldOfScience: Biological and Biomedical Sciences Organization: Brigham and Women's Hospital PIName: Sheena R Baratono +InstitutionID: 'https://osg-htc.org/iid/amkjjwp5fsro' diff --git a/projects/Bucknell_IT.yaml b/projects/Bucknell_IT.yaml index 4a9872252..6738a6fb8 100644 --- a/projects/Bucknell_IT.yaml +++ b/projects/Bucknell_IT.yaml @@ -9,3 +9,4 @@ ID: '695' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wmnibk6189rx' diff --git a/projects/CGS.yaml b/projects/CGS.yaml index 64a669874..609cd78c6 100644 --- a/projects/CGS.yaml +++ b/projects/CGS.yaml @@ -13,3 +13,4 @@ PIName: Panthea Sepehrband Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2vxlc7g64qpj' diff --git a/projects/CHTC-Staff.yaml b/projects/CHTC-Staff.yaml index 46eac8061..bdebf2131 100644 --- a/projects/CHTC-Staff.yaml +++ b/projects/CHTC-Staff.yaml @@ -27,3 +27,4 @@ ResourceAllocations: # OSG allocation - GroupName: TACC-Stampede2 LocalAllocationID: "TG-DDM160003" +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/CHomP.yaml b/projects/CHomP.yaml index 547058611..ea8e0c6bf 100644 --- a/projects/CHomP.yaml +++ b/projects/CHomP.yaml @@ -9,3 +9,4 @@ PIName: Konstantin Mischaikow Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/qrem5k97ikiv' diff --git a/projects/CLAS12.yaml b/projects/CLAS12.yaml index 9130818b2..1bae53ae2 100644 --- a/projects/CLAS12.yaml +++ b/projects/CLAS12.yaml @@ -8,3 +8,4 @@ Sponsor: VirtualOrganization: ID: '99' Name: JLab +InstitutionID: 'https://osg-htc.org/iid/hlz41oydapzn' diff --git a/projects/CMU_Isayev.yaml b/projects/CMU_Isayev.yaml index ddce4431c..93cc08f59 100644 --- a/projects/CMU_Isayev.yaml +++ b/projects/CMU_Isayev.yaml @@ -6,3 +6,4 @@ Organization: Carnegie-Mellon University PIName: Olexandr Isayev +InstitutionID: 'https://osg-htc.org/iid/3cqqrc2cgibl' diff --git a/projects/CMU_Romagnoli.yaml b/projects/CMU_Romagnoli.yaml index 58e478e8f..f49ff3eab 100644 --- a/projects/CMU_Romagnoli.yaml +++ b/projects/CMU_Romagnoli.yaml @@ -7,3 +7,4 @@ PIName: Raffaele Romagnoli Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3cqqrc2cgibl' diff --git a/projects/CMU_Viswanathan.yaml b/projects/CMU_Viswanathan.yaml index f32a65418..d90a569d8 100644 --- a/projects/CMU_Viswanathan.yaml +++ b/projects/CMU_Viswanathan.yaml @@ -7,3 +7,4 @@ PIName: Venkat Viswanathan Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3cqqrc2cgibl' diff --git a/projects/CNU_Henry.yaml b/projects/CNU_Henry.yaml index 210e60449..0588e0f78 100644 --- a/projects/CNU_Henry.yaml +++ b/projects/CNU_Henry.yaml @@ -5,3 +5,4 @@ Description: > FieldOfScience: Computer and Information Sciences Organization: Christopher Newport University PIName: Samuel Henry +InstitutionID: 'https://osg-htc.org/iid/a1hm0ndtf1zj' diff --git a/projects/COVID19_FoldingAtHome.yaml b/projects/COVID19_FoldingAtHome.yaml index 02c18a60e..41010143c 100644 --- a/projects/COVID19_FoldingAtHome.yaml +++ b/projects/COVID19_FoldingAtHome.yaml @@ -8,3 +8,4 @@ PIName: Greg Bowman Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: "https://osg-htc.org/iid/nv2rjrft01gg" diff --git a/projects/COVID19_Harvard_Bitran.yaml b/projects/COVID19_Harvard_Bitran.yaml index d2c8dc03f..af92a4064 100644 --- a/projects/COVID19_Harvard_Bitran.yaml +++ b/projects/COVID19_Harvard_Bitran.yaml @@ -33,3 +33,4 @@ ID: 687 Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/n1kbnzl7kyiv' diff --git a/projects/COVID19_Illinois_Gammie.yaml b/projects/COVID19_Illinois_Gammie.yaml index 9394446c2..f833ecd52 100644 --- a/projects/COVID19_Illinois_Gammie.yaml +++ b/projects/COVID19_Illinois_Gammie.yaml @@ -16,3 +16,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/10izzs5e7v1r' diff --git a/projects/COVID19_JHU_Howard.yaml b/projects/COVID19_JHU_Howard.yaml index ace700ce0..91cd0d510 100644 --- a/projects/COVID19_JHU_Howard.yaml +++ b/projects/COVID19_JHU_Howard.yaml @@ -18,3 +18,4 @@ PIName: James P. Howard, II Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3fml5tx2uhe0' diff --git a/projects/COVID19_LSUHSC_Chapple.yaml b/projects/COVID19_LSUHSC_Chapple.yaml index f2767f506..da294368d 100644 --- a/projects/COVID19_LSUHSC_Chapple.yaml +++ b/projects/COVID19_LSUHSC_Chapple.yaml @@ -25,3 +25,4 @@ ID: '671' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/9idmt4uz33c1' diff --git a/projects/COVID19_RepertoireTCell.yaml b/projects/COVID19_RepertoireTCell.yaml index 89222a563..959dc261a 100644 --- a/projects/COVID19_RepertoireTCell.yaml +++ b/projects/COVID19_RepertoireTCell.yaml @@ -26,3 +26,5 @@ ID: 677 Sponsor: CampusGrid: Name: OSG Connect + +InstitutionID: "https://osg-htc.org/iid/e9m0sui7r154" diff --git a/projects/COVID19_Stanford_Das.yaml b/projects/COVID19_Stanford_Das.yaml index bc0752448..860560520 100644 --- a/projects/COVID19_Stanford_Das.yaml +++ b/projects/COVID19_Stanford_Das.yaml @@ -10,3 +10,4 @@ ID: '660' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/COVID19_UCSD_Hsiao.yaml b/projects/COVID19_UCSD_Hsiao.yaml index 931b2fd02..d7d065a94 100644 --- a/projects/COVID19_UCSD_Hsiao.yaml +++ b/projects/COVID19_UCSD_Hsiao.yaml @@ -11,3 +11,4 @@ ID: '669' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/COVID19_UNL_Weitzel.yaml b/projects/COVID19_UNL_Weitzel.yaml index 7eb3fe603..e60f03468 100644 --- a/projects/COVID19_UNL_Weitzel.yaml +++ b/projects/COVID19_UNL_Weitzel.yaml @@ -7,3 +7,4 @@ PIName: Derek Weitzel Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/COVID19_WeNMR.yaml b/projects/COVID19_WeNMR.yaml index 62776e743..e61881aa5 100644 --- a/projects/COVID19_WeNMR.yaml +++ b/projects/COVID19_WeNMR.yaml @@ -17,3 +17,4 @@ ID: 660 Sponsor: VirtualOrganization: Name: ENMR +InstitutionID: 'https://osg-htc.org/iid/e333zusaa3hr' diff --git a/projects/CPSC_5520.yaml b/projects/CPSC_5520.yaml index 759c00bb3..bd9442848 100644 --- a/projects/CPSC_5520.yaml +++ b/projects/CPSC_5520.yaml @@ -1,7 +1,8 @@ Description: > Teaching a distributed systems course. Assignments will be at-scale applications including a parallel video rendering pipeline, a genome analysis application, and a text analysis workflow -Department: Computer Science +Department: Computer Science FieldOfScience: Computer and Information Science Organization: Seattle University PIName: Nate Kremer-Herman +InstitutionID: 'https://osg-htc.org/iid/nn54csg34gty' diff --git a/projects/CSM_BeEST.yaml b/projects/CSM_BeEST.yaml index 7cd7579e8..c78e72295 100644 --- a/projects/CSM_BeEST.yaml +++ b/projects/CSM_BeEST.yaml @@ -12,3 +12,4 @@ PIName: Kyle Leach Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2gwyao3kqhpn' diff --git a/projects/CSUN_Jiang.yaml b/projects/CSUN_Jiang.yaml index b32d7f39b..9b725d861 100644 --- a/projects/CSUN_Jiang.yaml +++ b/projects/CSUN_Jiang.yaml @@ -7,3 +7,4 @@ Department: Computer Science FieldOfScience: Computer and Information Sciences Organization: California State University, Northridge PIName: Xunfei Jiang +InstitutionID: 'https://osg-htc.org/iid/vfjpi4twqspj' diff --git a/projects/CSUN_Katz.yaml b/projects/CSUN_Katz.yaml index 52c3d37ea..1c46f857d 100644 --- a/projects/CSUN_Katz.yaml +++ b/projects/CSUN_Katz.yaml @@ -4,3 +4,4 @@ Description: Large scale searches for binary sequences with identical autocorrel FieldOfScience: Mathematics Organization: California State University, Northridge PIName: Daniel Katz +InstitutionID: 'https://osg-htc.org/iid/vfjpi4twqspj' diff --git a/projects/CSUSB_ITS.yaml b/projects/CSUSB_ITS.yaml index a749e5413..46c641229 100644 --- a/projects/CSUSB_ITS.yaml +++ b/projects/CSUSB_ITS.yaml @@ -9,3 +9,4 @@ ID: '799' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wra3vmvyvmgd' diff --git a/projects/CSU_Buchanan.yaml b/projects/CSU_Buchanan.yaml index 2e321d038..f587769c7 100644 --- a/projects/CSU_Buchanan.yaml +++ b/projects/CSU_Buchanan.yaml @@ -3,3 +3,4 @@ Department: Physics FieldOfScience: Physics Organization: Colorado State University PIName: Kristen Buchanan +InstitutionID: 'https://osg-htc.org/iid/2aj5pa9etoc7' diff --git a/projects/CUAnschutz_JuarezColunga.yaml b/projects/CUAnschutz_JuarezColunga.yaml index aee0612c6..96ef310d0 100644 --- a/projects/CUAnschutz_JuarezColunga.yaml +++ b/projects/CUAnschutz_JuarezColunga.yaml @@ -9,3 +9,4 @@ ID: '597' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ca3jfb3f8sv3' diff --git a/projects/CUBoulder_Aydin.yaml b/projects/CUBoulder_Aydin.yaml index 3d58c2d6d..fbf78f57e 100644 --- a/projects/CUBoulder_Aydin.yaml +++ b/projects/CUBoulder_Aydin.yaml @@ -9,3 +9,4 @@ ID: '757' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gpeckuwpdnrs' diff --git a/projects/CUNYBrooklyn_Juszczak.yaml b/projects/CUNYBrooklyn_Juszczak.yaml index 67e26b965..1a66086f9 100644 --- a/projects/CUNYBrooklyn_Juszczak.yaml +++ b/projects/CUNYBrooklyn_Juszczak.yaml @@ -7,3 +7,4 @@ PIName: Laura Juszczak Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/lbg0jt5w2rks' diff --git a/projects/Caltech_Bouma.yaml b/projects/Caltech_Bouma.yaml index 0d7918d09..3b24a9197 100644 --- a/projects/Caltech_Bouma.yaml +++ b/projects/Caltech_Bouma.yaml @@ -3,3 +3,4 @@ Department: Division of Physics, Mathematics and Astronomy FieldOfScience: Astrophysics Organization: California Institute of Technology PIName: Luke Bouma +InstitutionID: 'https://osg-htc.org/iid/m9rrh8ld1wyh' diff --git a/projects/Caltech_Chary.yaml b/projects/Caltech_Chary.yaml index 2f06d5bec..7a841bb95 100644 --- a/projects/Caltech_Chary.yaml +++ b/projects/Caltech_Chary.yaml @@ -10,3 +10,4 @@ ID: '847' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/m9rrh8ld1wyh' diff --git a/projects/Caltech_Kanner.yaml b/projects/Caltech_Kanner.yaml index ff9a375eb..7fa57f093 100644 --- a/projects/Caltech_Kanner.yaml +++ b/projects/Caltech_Kanner.yaml @@ -7,3 +7,4 @@ PIName: Jonah Kanner Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/m9rrh8ld1wyh' diff --git a/projects/Caltech_Morrell.yaml b/projects/Caltech_Morrell.yaml index cbbbede36..aa5644f64 100644 --- a/projects/Caltech_Morrell.yaml +++ b/projects/Caltech_Morrell.yaml @@ -7,3 +7,4 @@ PIName: Tom Morrell Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/m9rrh8ld1wyh' diff --git a/projects/Caltech_Rusholme.yaml b/projects/Caltech_Rusholme.yaml index 27ccefca7..4b972b738 100644 --- a/projects/Caltech_Rusholme.yaml +++ b/projects/Caltech_Rusholme.yaml @@ -9,3 +9,4 @@ ID: '639' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/m9rrh8ld1wyh' diff --git a/projects/Caltech_Vallisneri.yaml b/projects/Caltech_Vallisneri.yaml index 3ba2f2a88..5e347df93 100644 --- a/projects/Caltech_Vallisneri.yaml +++ b/projects/Caltech_Vallisneri.yaml @@ -10,3 +10,4 @@ Department: California Institute of Technology FieldOfScience: Astronomy and Astrophysics Organization: California Institute of Technology PIName: Michele Vallisneri +InstitutionID: 'https://osg-htc.org/iid/m9rrh8ld1wyh' diff --git a/projects/CampusWorkshop_Feb2021.yaml b/projects/CampusWorkshop_Feb2021.yaml index 05f001d21..813fb70fc 100644 --- a/projects/CampusWorkshop_Feb2021.yaml +++ b/projects/CampusWorkshop_Feb2021.yaml @@ -9,3 +9,4 @@ ID: '759' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/Canisius_Wood.yaml b/projects/Canisius_Wood.yaml index 31df5292f..b77c274e2 100644 --- a/projects/Canisius_Wood.yaml +++ b/projects/Canisius_Wood.yaml @@ -9,3 +9,4 @@ ID: '809' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gq4rco2wmxx8' diff --git a/projects/CaseWestern_Tolbert.yaml b/projects/CaseWestern_Tolbert.yaml index d7fa4598c..73b89c48c 100644 --- a/projects/CaseWestern_Tolbert.yaml +++ b/projects/CaseWestern_Tolbert.yaml @@ -9,3 +9,4 @@ ID: '617' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7kqlt19a4h39' diff --git a/projects/CaseWestern_Zhang.yaml b/projects/CaseWestern_Zhang.yaml index d8186b6c6..9506d19dd 100644 --- a/projects/CaseWestern_Zhang.yaml +++ b/projects/CaseWestern_Zhang.yaml @@ -7,3 +7,4 @@ PIName: Lijun Zhang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7kqlt19a4h39' diff --git a/projects/CatalystDesign.yaml b/projects/CatalystDesign.yaml index bdc8121ae..a3c83c9cc 100644 --- a/projects/CatalystDesign.yaml +++ b/projects/CatalystDesign.yaml @@ -9,3 +9,4 @@ ID: '536' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7b1hagvpg2j1' diff --git a/projects/CatalystHTVS.yaml b/projects/CatalystHTVS.yaml index 88a84d535..ab243729f 100644 --- a/projects/CatalystHTVS.yaml +++ b/projects/CatalystHTVS.yaml @@ -14,3 +14,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/Cdms.yaml b/projects/Cdms.yaml index a80e1fbc0..8d7110df3 100644 --- a/projects/Cdms.yaml +++ b/projects/Cdms.yaml @@ -7,3 +7,4 @@ PIName: Joe Boyd Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/CedarsSinai_Meyer.yaml b/projects/CedarsSinai_Meyer.yaml index ef3b3ae14..51c58d5e1 100644 --- a/projects/CedarsSinai_Meyer.yaml +++ b/projects/CedarsSinai_Meyer.yaml @@ -8,3 +8,4 @@ Department: Computational Biomedicine FieldOfScience: Biological and Biomedical Sciences Organization: Cedars-Sinai Medical Center PIName: Jesse Meyer +InstitutionID: 'https://osg-htc.org/iid/cbf46cc12bz3' diff --git a/projects/CentaurSim.yaml b/projects/CentaurSim.yaml index dbdc3d397..0dd06da32 100644 --- a/projects/CentaurSim.yaml +++ b/projects/CentaurSim.yaml @@ -18,3 +18,4 @@ PIName: Nathan Kaib Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/5vvknn2bzgvt' diff --git a/projects/Cincinnati_RCD.yaml b/projects/Cincinnati_RCD.yaml index 48a5bf264..cd7446c55 100644 --- a/projects/Cincinnati_RCD.yaml +++ b/projects/Cincinnati_RCD.yaml @@ -9,3 +9,4 @@ ID: '824' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/52f5piuly2gg' diff --git a/projects/Clemson.yaml b/projects/Clemson.yaml index d3c9458c6..3d1bb2e5c 100644 --- a/projects/Clemson.yaml +++ b/projects/Clemson.yaml @@ -7,3 +7,4 @@ PIName: Marcin Ziolkowski Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ricyf18amt49' diff --git a/projects/Clemson_Sarupria.yaml b/projects/Clemson_Sarupria.yaml index 0b25f63a1..9baa8be60 100644 --- a/projects/Clemson_Sarupria.yaml +++ b/projects/Clemson_Sarupria.yaml @@ -9,3 +9,4 @@ ID: '653' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ricyf18amt49' diff --git a/projects/CloudTemplate.yaml b/projects/CloudTemplate.yaml index e9e0cbefc..94a4ad36e 100644 --- a/projects/CloudTemplate.yaml +++ b/projects/CloudTemplate.yaml @@ -9,3 +9,4 @@ ID: '540' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/dohu2f6ba08u' diff --git a/projects/ClusterJob.yaml b/projects/ClusterJob.yaml index 03514ed63..989a44cfd 100644 --- a/projects/ClusterJob.yaml +++ b/projects/ClusterJob.yaml @@ -8,3 +8,4 @@ PIName: Hatef Monajemi Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/Coe_Stobb.yaml b/projects/Coe_Stobb.yaml index a936d2e3a..bfce59760 100644 --- a/projects/Coe_Stobb.yaml +++ b/projects/Coe_Stobb.yaml @@ -9,3 +9,4 @@ ID: '760' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/56nmp7cfr45b' diff --git a/projects/Columbia_Alquraishi.yaml b/projects/Columbia_Alquraishi.yaml index c3b193502..25c2d1b59 100644 --- a/projects/Columbia_Alquraishi.yaml +++ b/projects/Columbia_Alquraishi.yaml @@ -8,3 +8,4 @@ PIName: Mohammed Alquraishi Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/avy4x5r4jsrw' diff --git a/projects/Columbia_Eaton.yaml b/projects/Columbia_Eaton.yaml index ff1409511..891deaab4 100644 --- a/projects/Columbia_Eaton.yaml +++ b/projects/Columbia_Eaton.yaml @@ -9,3 +9,4 @@ ID: '696' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/avy4x5r4jsrw' diff --git a/projects/Columbia_Gibson.yaml b/projects/Columbia_Gibson.yaml index 9378019a6..4e2b917f1 100644 --- a/projects/Columbia_Gibson.yaml +++ b/projects/Columbia_Gibson.yaml @@ -9,3 +9,4 @@ ID: '812' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/avy4x5r4jsrw' diff --git a/projects/Columbia_Jensen.yaml b/projects/Columbia_Jensen.yaml index f338a4c2c..768ba08ee 100644 --- a/projects/Columbia_Jensen.yaml +++ b/projects/Columbia_Jensen.yaml @@ -9,3 +9,4 @@ ID: '783' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/avy4x5r4jsrw' diff --git a/projects/Columbia_Mandal.yaml b/projects/Columbia_Mandal.yaml index 31dd1b691..63151964e 100644 --- a/projects/Columbia_Mandal.yaml +++ b/projects/Columbia_Mandal.yaml @@ -15,3 +15,4 @@ PIName: Arkajit Mandal Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/avy4x5r4jsrw' diff --git a/projects/Columbia_Reichman.yaml b/projects/Columbia_Reichman.yaml index c09d58cb5..2c458e296 100644 --- a/projects/Columbia_Reichman.yaml +++ b/projects/Columbia_Reichman.yaml @@ -3,8 +3,9 @@ Description: > to simulate quantum dynamics of coupled electron-phonon systems. First, we will benchmark our method against exact numerical approaches and then combine with ab-initio calculations. Using our approach, we will also - investigate quantum dynamical effects in materials strongly coupled to quantized light. + investigate quantum dynamical effects in materials strongly coupled to quantized light. Department: Chemistry Department FieldOfScience: Chemistry Organization: Columbia University PIName: David Reichman +InstitutionID: 'https://osg-htc.org/iid/avy4x5r4jsrw' diff --git a/projects/CombinedPS.yaml b/projects/CombinedPS.yaml index 0087e1436..1fd2ec3ab 100644 --- a/projects/CombinedPS.yaml +++ b/projects/CombinedPS.yaml @@ -15,3 +15,4 @@ PIName: Ozkan Celik Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2gwyao3kqhpn' diff --git a/projects/CometCloud.yaml b/projects/CometCloud.yaml index 1313874f4..91010c2ec 100644 --- a/projects/CometCloud.yaml +++ b/projects/CometCloud.yaml @@ -17,3 +17,4 @@ PIName: Javier Diaz-Montes Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/qrem5k97ikiv' diff --git a/projects/CompBinFormMod.yaml b/projects/CompBinFormMod.yaml index f69e67090..0dd12a036 100644 --- a/projects/CompBinFormMod.yaml +++ b/projects/CompBinFormMod.yaml @@ -7,3 +7,4 @@ PIName: Richard O'Shaughnessy Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/khe0lt7x352p' diff --git a/projects/CompChem.yaml b/projects/CompChem.yaml index 5bab5c37e..b7f2d2d0e 100644 --- a/projects/CompChem.yaml +++ b/projects/CompChem.yaml @@ -7,3 +7,4 @@ PIName: Chaoren Liu Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/CompNeuro.yaml b/projects/CompNeuro.yaml index bce3dd6bb..6d8aee903 100644 --- a/projects/CompNeuro.yaml +++ b/projects/CompNeuro.yaml @@ -17,3 +17,4 @@ PIName: Po-He Tseng Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/ConnectTrain.yaml b/projects/ConnectTrain.yaml index 026b9562d..7758d62a9 100644 --- a/projects/ConnectTrain.yaml +++ b/projects/ConnectTrain.yaml @@ -7,3 +7,4 @@ PIName: Christina Koch Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8hgx4a4ptpt9' diff --git a/projects/ContinuousIntegration.yaml b/projects/ContinuousIntegration.yaml index 8150447b6..9db259bb7 100644 --- a/projects/ContinuousIntegration.yaml +++ b/projects/ContinuousIntegration.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/Cornell_Gage.yaml b/projects/Cornell_Gage.yaml index 7492dcef6..96ede478f 100644 --- a/projects/Cornell_Gage.yaml +++ b/projects/Cornell_Gage.yaml @@ -9,3 +9,4 @@ ID: '750' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0lcrhlbjpu9r' diff --git a/projects/Cornell_Lai.yaml b/projects/Cornell_Lai.yaml index 16316ea34..c9f941715 100644 --- a/projects/Cornell_Lai.yaml +++ b/projects/Cornell_Lai.yaml @@ -9,3 +9,4 @@ ID: '733' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0lcrhlbjpu9r' diff --git a/projects/Cornell_Pugh.yaml b/projects/Cornell_Pugh.yaml index ad437b242..f40096cfe 100644 --- a/projects/Cornell_Pugh.yaml +++ b/projects/Cornell_Pugh.yaml @@ -7,3 +7,4 @@ PIName: Frank Pugh Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0lcrhlbjpu9r' diff --git a/projects/Cornell_Sandoz.yaml b/projects/Cornell_Sandoz.yaml index a79e3cb93..6b5d1dca5 100644 --- a/projects/Cornell_Sandoz.yaml +++ b/projects/Cornell_Sandoz.yaml @@ -3,3 +3,4 @@ Department: Population Medicine and Diagnostic Sciences FieldOfScience: Biological and Biomedical Sciences Organization: Cornell University PIName: Kelsi Sandoz +InstitutionID: 'https://osg-htc.org/iid/0lcrhlbjpu9r' diff --git a/projects/CotranslationalFolding.yaml b/projects/CotranslationalFolding.yaml index 43e2a045d..8f8ad582d 100644 --- a/projects/CotranslationalFolding.yaml +++ b/projects/CotranslationalFolding.yaml @@ -19,3 +19,4 @@ PIName: Edward O'Brien Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/f1tlj6c19ppg' diff --git a/projects/CpDarkMatterSimulation.yaml b/projects/CpDarkMatterSimulation.yaml index 8f9a4d417..91c147df1 100644 --- a/projects/CpDarkMatterSimulation.yaml +++ b/projects/CpDarkMatterSimulation.yaml @@ -8,3 +8,4 @@ PIName: Christoph Paus Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/Creighton_Kokensparger.yaml b/projects/Creighton_Kokensparger.yaml index 661c1cac6..f7537bf06 100644 --- a/projects/Creighton_Kokensparger.yaml +++ b/projects/Creighton_Kokensparger.yaml @@ -7,3 +7,4 @@ PIName: Brian Kokensparger Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wlb963nidmau' diff --git a/projects/DBConcepts.yaml b/projects/DBConcepts.yaml index cd7128533..b8581ea5d 100644 --- a/projects/DBConcepts.yaml +++ b/projects/DBConcepts.yaml @@ -8,3 +8,4 @@ PIName: Richard Jean So Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/DDPSC_Baxter.yaml b/projects/DDPSC_Baxter.yaml index 6bb7e2fa2..acd4ec077 100644 --- a/projects/DDPSC_Baxter.yaml +++ b/projects/DDPSC_Baxter.yaml @@ -9,3 +9,4 @@ ID: '748' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/rsgxpux8bm0h' diff --git a/projects/DES.yaml b/projects/DES.yaml index 84420d62b..f983b12de 100644 --- a/projects/DES.yaml +++ b/projects/DES.yaml @@ -7,3 +7,4 @@ PIName: Nikolay Kuropatkin Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/DESDM.yaml b/projects/DESDM.yaml index ff60702ae..ec03be796 100644 --- a/projects/DESDM.yaml +++ b/projects/DESDM.yaml @@ -23,3 +23,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ypnvkgxa67oy' diff --git a/projects/DOSAR.yaml b/projects/DOSAR.yaml index 430823fb2..4ec851507 100644 --- a/projects/DOSAR.yaml +++ b/projects/DOSAR.yaml @@ -9,3 +9,4 @@ PIName: Rob Quick Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/xvsrc4eixk2g' diff --git a/projects/DTWclassifier.yaml b/projects/DTWclassifier.yaml index cc8c24937..1cfb7c42c 100644 --- a/projects/DTWclassifier.yaml +++ b/projects/DTWclassifier.yaml @@ -8,3 +8,4 @@ PIName: Luke Remage-Healey Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/sqj1fi5b7fdj' diff --git a/projects/DUNE.yaml b/projects/DUNE.yaml index bab986e3c..e67344351 100644 --- a/projects/DUNE.yaml +++ b/projects/DUNE.yaml @@ -7,3 +7,4 @@ PIName: Thomas Robert Junk Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/Dartmouth_Chaboyer.yaml b/projects/Dartmouth_Chaboyer.yaml index 61052c9f9..70ff775df 100644 --- a/projects/Dartmouth_Chaboyer.yaml +++ b/projects/Dartmouth_Chaboyer.yaml @@ -7,3 +7,4 @@ Department: Physics and Astronomy FieldOfScience: Astronomy and Astrophysics Organization: Dartmouth College PIName: Brian Chaboyer +InstitutionID: 'https://osg-htc.org/iid/ay2n55g6y1cq' diff --git a/projects/DataSaoPaulo.yaml b/projects/DataSaoPaulo.yaml index a74518f3d..20caea870 100644 --- a/projects/DataSaoPaulo.yaml +++ b/projects/DataSaoPaulo.yaml @@ -7,3 +7,4 @@ PIName: Rob Quick Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uws6kivcttuc' diff --git a/projects/DataTrieste.yaml b/projects/DataTrieste.yaml index 7b21380cd..6423d56b6 100644 --- a/projects/DataTrieste.yaml +++ b/projects/DataTrieste.yaml @@ -7,3 +7,4 @@ PIName: Rob Quick Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/p735q1p38unz' diff --git a/projects/Dearborn_Shawver.yaml b/projects/Dearborn_Shawver.yaml index e02d2e6c0..f4249cc98 100644 --- a/projects/Dearborn_Shawver.yaml +++ b/projects/Dearborn_Shawver.yaml @@ -7,3 +7,4 @@ PIName: Kimberly Shawver Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: "https://osg-htc.org/iid/v8uoprmk1nb2" diff --git a/projects/DeepMail.yaml b/projects/DeepMail.yaml index e620df9a5..b5acf3ebf 100644 --- a/projects/DeepMail.yaml +++ b/projects/DeepMail.yaml @@ -12,3 +12,4 @@ PIName: Micheal Marasco Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/5vvknn2bzgvt' diff --git a/projects/DeerDisease.yaml b/projects/DeerDisease.yaml index 6f52e00e4..32f57b32c 100644 --- a/projects/DeerDisease.yaml +++ b/projects/DeerDisease.yaml @@ -10,3 +10,4 @@ PIName: Lene Jung Kjaer Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/530k2ll1w59q' diff --git a/projects/DelhiWorkshop2015.yaml b/projects/DelhiWorkshop2015.yaml index 60c616cce..75abae23c 100644 --- a/projects/DelhiWorkshop2015.yaml +++ b/projects/DelhiWorkshop2015.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/DemandSC.yaml b/projects/DemandSC.yaml index 0b3cb429a..4d390c818 100644 --- a/projects/DemandSC.yaml +++ b/projects/DemandSC.yaml @@ -9,3 +9,4 @@ PIName: Fernando Luco Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8wqbbz4i2cma' diff --git a/projects/DemoSims.yaml b/projects/DemoSims.yaml index 61401f935..cb342fcee 100644 --- a/projects/DemoSims.yaml +++ b/projects/DemoSims.yaml @@ -9,3 +9,4 @@ ID: '530' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/DetectorDesign.yaml b/projects/DetectorDesign.yaml index 4cd782825..7332895b3 100644 --- a/projects/DetectorDesign.yaml +++ b/projects/DetectorDesign.yaml @@ -8,3 +8,4 @@ PIName: John Strologas Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/pclpz1bwbpdi' diff --git a/projects/DiffCorr.yaml b/projects/DiffCorr.yaml index 6aa2f8720..dadf7574b 100644 --- a/projects/DiffCorr.yaml +++ b/projects/DiffCorr.yaml @@ -7,3 +7,4 @@ PIName: Jacek Herbrych Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/hp8930spi37u' diff --git a/projects/Diffpred.yaml b/projects/Diffpred.yaml index a84f0169c..4f7fe110d 100644 --- a/projects/Diffpred.yaml +++ b/projects/Diffpred.yaml @@ -8,3 +8,4 @@ PIName: Franco Pestilli Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uws6kivcttuc' diff --git a/projects/Diffusion-predictor.yaml b/projects/Diffusion-predictor.yaml index 297ed45ec..8fe1698a9 100644 --- a/projects/Diffusion-predictor.yaml +++ b/projects/Diffusion-predictor.yaml @@ -7,3 +7,4 @@ PIName: Soichi Hayashi Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/uws6kivcttuc' diff --git a/projects/Dissertation.yaml b/projects/Dissertation.yaml index f7285e310..4dc695b42 100644 --- a/projects/Dissertation.yaml +++ b/projects/Dissertation.yaml @@ -8,3 +8,4 @@ PIName: Ann Arthur Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/Doane_Engebretson.yaml b/projects/Doane_Engebretson.yaml index 7ab07e46b..321718987 100644 --- a/projects/Doane_Engebretson.yaml +++ b/projects/Doane_Engebretson.yaml @@ -7,3 +7,4 @@ PIName: Alec Engebretson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f9c86mft1gzz' diff --git a/projects/Drexel_URCF.yaml b/projects/Drexel_URCF.yaml index e42751e7a..5b6ed98b0 100644 --- a/projects/Drexel_URCF.yaml +++ b/projects/Drexel_URCF.yaml @@ -9,3 +9,4 @@ PIName: David Chin Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/g2gycmag14p1' diff --git a/projects/Duke-QGP.yaml b/projects/Duke-QGP.yaml index 75da4d229..009eb603f 100644 --- a/projects/Duke-QGP.yaml +++ b/projects/Duke-QGP.yaml @@ -8,3 +8,4 @@ PIName: Steffen A. Bass Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/Duke_Charbonneau.yaml b/projects/Duke_Charbonneau.yaml index 5b0268e57..8b308b019 100644 --- a/projects/Duke_Charbonneau.yaml +++ b/projects/Duke_Charbonneau.yaml @@ -6,3 +6,4 @@ Department: Chemistry FieldOfScience: Computational Condensed Matter Physics Organization: Duke University PIName: Patrick Charbonneau +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/ECFA.yaml b/projects/ECFA.yaml index 4de788479..f61a3d3cb 100644 --- a/projects/ECFA.yaml +++ b/projects/ECFA.yaml @@ -19,3 +19,4 @@ PIName: Meenakshi Narain Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/0ytxfy0n4hol' diff --git a/projects/EDFCHT.yaml b/projects/EDFCHT.yaml index 97a4b40dd..6746ccf80 100644 --- a/projects/EDFCHT.yaml +++ b/projects/EDFCHT.yaml @@ -12,3 +12,4 @@ PIName: Jianghao Chu Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zy99b9jjoqpb' diff --git a/projects/EHEC.yaml b/projects/EHEC.yaml index 08610c464..230df75ad 100644 --- a/projects/EHEC.yaml +++ b/projects/EHEC.yaml @@ -22,3 +22,4 @@ PIName: Chuck Kaspar Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/EIC.yaml b/projects/EIC.yaml index d130dca24..060228eaa 100644 --- a/projects/EIC.yaml +++ b/projects/EIC.yaml @@ -8,3 +8,4 @@ PIName: Tobias Toll Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/EICpseudodata.yaml b/projects/EICpseudodata.yaml index 9daacb4a0..1ee26164c 100644 --- a/projects/EICpseudodata.yaml +++ b/projects/EICpseudodata.yaml @@ -12,3 +12,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/qqd2s2b6m7eh' diff --git a/projects/EMODIS-NDVI.yaml b/projects/EMODIS-NDVI.yaml index c9994efda..88e5f81a1 100644 --- a/projects/EMODIS-NDVI.yaml +++ b/projects/EMODIS-NDVI.yaml @@ -7,3 +7,4 @@ PIName: Dayne Broderson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/85bj3tcfwa1z' diff --git a/projects/ERVmodels.yaml b/projects/ERVmodels.yaml index e9f640cbf..686a5799a 100644 --- a/projects/ERVmodels.yaml +++ b/projects/ERVmodels.yaml @@ -14,3 +14,4 @@ PIName: Fabricia Nascimento Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/rs6jusb08ogc' diff --git a/projects/ETHZ_Zhang.yaml b/projects/ETHZ_Zhang.yaml index 4dfccce4f..c33a17643 100644 --- a/projects/ETHZ_Zhang.yaml +++ b/projects/ETHZ_Zhang.yaml @@ -6,3 +6,4 @@ PIName: Ce Zhang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fuib5manpc6a' diff --git a/projects/EWMS_Riedel_Startup.yaml b/projects/EWMS_Riedel_Startup.yaml index 54ba7585c..26d4c6544 100644 --- a/projects/EWMS_Riedel_Startup.yaml +++ b/projects/EWMS_Riedel_Startup.yaml @@ -6,3 +6,4 @@ PIName: Benedikt Riedel Sponsor: CampusGrid: Name: PATh Facility +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/Emory_Boettcher.yaml b/projects/Emory_Boettcher.yaml index 97215feea..f32631efb 100644 --- a/projects/Emory_Boettcher.yaml +++ b/projects/Emory_Boettcher.yaml @@ -6,3 +6,4 @@ PIName: Stefan Boettcher Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/yaw5atxcrn55' diff --git a/projects/Emory_Chavez.yaml b/projects/Emory_Chavez.yaml index 78dbd5ab9..68eb6d19a 100644 --- a/projects/Emory_Chavez.yaml +++ b/projects/Emory_Chavez.yaml @@ -6,3 +6,4 @@ PIName: David Jacho-Chavez Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/yaw5atxcrn55' diff --git a/projects/Emory_Pesavento.yaml b/projects/Emory_Pesavento.yaml index cc1dab4db..3cba5cca6 100644 --- a/projects/Emory_Pesavento.yaml +++ b/projects/Emory_Pesavento.yaml @@ -14,3 +14,4 @@ Description: > FieldOfScience: Economics Organization: Emory University PIName: Elena Pesavento +InstitutionID: 'https://osg-htc.org/iid/yaw5atxcrn55' diff --git a/projects/EmpModNatGas.yaml b/projects/EmpModNatGas.yaml index 63bc11abe..a9ba57c5b 100644 --- a/projects/EmpModNatGas.yaml +++ b/projects/EmpModNatGas.yaml @@ -9,3 +9,4 @@ PIName: Ashley Vissing Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/EpiBrain.yaml b/projects/EpiBrain.yaml index a67479198..b9cd9cd4d 100644 --- a/projects/EpiBrain.yaml +++ b/projects/EpiBrain.yaml @@ -9,3 +9,4 @@ PIName: David Mogul Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3jn3w1ccwxwd' diff --git a/projects/Etown_Wittmeyer.yaml b/projects/Etown_Wittmeyer.yaml index d17be6c56..9d7c68a93 100644 --- a/projects/Etown_Wittmeyer.yaml +++ b/projects/Etown_Wittmeyer.yaml @@ -7,3 +7,4 @@ PIName: Jennifer Legault Wittmeyer Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zwt3bodiwnsy' diff --git a/projects/Eureka_Danehkar.yaml b/projects/Eureka_Danehkar.yaml index 6e178144b..98564bd99 100644 --- a/projects/Eureka_Danehkar.yaml +++ b/projects/Eureka_Danehkar.yaml @@ -7,3 +7,4 @@ PIName: Ashkbiz Danehkar Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ldk00hbo5m5x' diff --git a/projects/EvoProtDrug.yaml b/projects/EvoProtDrug.yaml index 344cc7a4a..8218b4136 100644 --- a/projects/EvoProtDrug.yaml +++ b/projects/EvoProtDrug.yaml @@ -19,3 +19,4 @@ PIName: Milo Lin Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/26ns7uva5t0a' diff --git a/projects/EvoTheory.yaml b/projects/EvoTheory.yaml index 2e3432480..4639d069a 100644 --- a/projects/EvoTheory.yaml +++ b/projects/EvoTheory.yaml @@ -31,3 +31,4 @@ PIName: Christina Burch Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nhz3r9d0308l' diff --git a/projects/EvolCE.yaml b/projects/EvolCE.yaml index 10320312e..a90f52c01 100644 --- a/projects/EvolCE.yaml +++ b/projects/EvolCE.yaml @@ -7,3 +7,4 @@ PIName: Davorka Gulisija Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nv2rjrft01gg' diff --git a/projects/EvolSims.yaml b/projects/EvolSims.yaml index 5c32ce6d6..dce4acdd5 100644 --- a/projects/EvolSims.yaml +++ b/projects/EvolSims.yaml @@ -8,3 +8,4 @@ PIName: Oana Carja Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nv2rjrft01gg' diff --git a/projects/EvolvingAI.yaml b/projects/EvolvingAI.yaml index 9f76c6d69..89be0bf05 100644 --- a/projects/EvolvingAI.yaml +++ b/projects/EvolvingAI.yaml @@ -13,3 +13,4 @@ PIName: Jeff Clune Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/08r7n3jv5f14' diff --git a/projects/ExhaustiveSearch.yaml b/projects/ExhaustiveSearch.yaml index d7ab59ff4..183187c8c 100644 --- a/projects/ExhaustiveSearch.yaml +++ b/projects/ExhaustiveSearch.yaml @@ -8,3 +8,4 @@ PIName: Sam Volchenboum Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/ExoplanetaryACS.yaml b/projects/ExoplanetaryACS.yaml index f81e36c01..f9d9a41c9 100644 --- a/projects/ExoplanetaryACS.yaml +++ b/projects/ExoplanetaryACS.yaml @@ -11,3 +11,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/FDDRCS.yaml b/projects/FDDRCS.yaml index ecfe8c764..86a53a2d1 100644 --- a/projects/FDDRCS.yaml +++ b/projects/FDDRCS.yaml @@ -10,3 +10,4 @@ PIName: Alessandro Peri Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gpeckuwpdnrs' diff --git a/projects/FDLTCC_Wetherbee.yaml b/projects/FDLTCC_Wetherbee.yaml index d0bb0f14a..6dcb60efb 100644 --- a/projects/FDLTCC_Wetherbee.yaml +++ b/projects/FDLTCC_Wetherbee.yaml @@ -7,3 +7,4 @@ PIName: Ted Wetherbee Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/49ek6whykyi8' diff --git a/projects/FECliu.yaml b/projects/FECliu.yaml index 522a819b0..f9b4d8f8d 100644 --- a/projects/FECliu.yaml +++ b/projects/FECliu.yaml @@ -7,3 +7,4 @@ PIName: Yanfang Liu Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zoe98r1f2ztc' diff --git a/projects/FEMyo.yaml b/projects/FEMyo.yaml index fb48e1385..a97c35606 100644 --- a/projects/FEMyo.yaml +++ b/projects/FEMyo.yaml @@ -13,3 +13,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uwam2e6xh8l2' diff --git a/projects/FF15IPQEXT.yaml b/projects/FF15IPQEXT.yaml index 56750e775..81cc02023 100644 --- a/projects/FF15IPQEXT.yaml +++ b/projects/FF15IPQEXT.yaml @@ -7,3 +7,4 @@ PIName: Lillian Chong Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2ayx10b74xua' diff --git a/projects/FFValidate.yaml b/projects/FFValidate.yaml index 006146d2e..157fd3c0e 100644 --- a/projects/FFValidate.yaml +++ b/projects/FFValidate.yaml @@ -9,3 +9,4 @@ PIName: Vijay Pande Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/FIFE.yaml b/projects/FIFE.yaml index 398104ac0..3386c2d90 100644 --- a/projects/FIFE.yaml +++ b/projects/FIFE.yaml @@ -7,3 +7,4 @@ PIName: Ken Herner Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/FIU_DCunha.yaml b/projects/FIU_DCunha.yaml index e24b9deba..e390d542b 100644 --- a/projects/FIU_DCunha.yaml +++ b/projects/FIU_DCunha.yaml @@ -7,3 +7,4 @@ PIName: Cassian D’Cunha Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gyqnlof5dslq' diff --git a/projects/FIU_Guo.yaml b/projects/FIU_Guo.yaml index 8bcad1f21..81909ed7d 100644 --- a/projects/FIU_Guo.yaml +++ b/projects/FIU_Guo.yaml @@ -7,3 +7,4 @@ Department: College of Arts and Science FieldOfScience: Physics Organization: Florida International University PIName: Lei Guo +InstitutionID: 'https://osg-htc.org/iid/gyqnlof5dslq' diff --git a/projects/FIU_Hamid.yaml b/projects/FIU_Hamid.yaml index 42bba76e1..6abebd9c8 100644 --- a/projects/FIU_Hamid.yaml +++ b/projects/FIU_Hamid.yaml @@ -7,3 +7,4 @@ PIName: Shahid Hamid Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gyqnlof5dslq' diff --git a/projects/FNAL_Hoeche.yaml b/projects/FNAL_Hoeche.yaml index f3bcebf2c..0e2688a48 100644 --- a/projects/FNAL_Hoeche.yaml +++ b/projects/FNAL_Hoeche.yaml @@ -12,3 +12,4 @@ PIName: Stefan Hoeche Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/FRISpoilageProject.yaml b/projects/FRISpoilageProject.yaml index 7270525e8..85fbe6833 100644 --- a/projects/FRISpoilageProject.yaml +++ b/projects/FRISpoilageProject.yaml @@ -10,3 +10,4 @@ PIName: Chuck Kaspar Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/FSU_Kolberg.yaml b/projects/FSU_Kolberg.yaml index a3c2fb4b0..a9dbb882d 100644 --- a/projects/FSU_Kolberg.yaml +++ b/projects/FSU_Kolberg.yaml @@ -9,3 +9,4 @@ ID: '706' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0yddmgnh2xl5' diff --git a/projects/FSU_RCC.yaml b/projects/FSU_RCC.yaml index 73ace04c1..faec6663c 100644 --- a/projects/FSU_RCC.yaml +++ b/projects/FSU_RCC.yaml @@ -9,3 +9,4 @@ PIName: Paul van der Mark Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0yddmgnh2xl5' diff --git a/projects/Fairfield_Kubasik.yaml b/projects/Fairfield_Kubasik.yaml index 3d25bb50b..2623c922e 100644 --- a/projects/Fairfield_Kubasik.yaml +++ b/projects/Fairfield_Kubasik.yaml @@ -12,3 +12,4 @@ ID: '797' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/j7cdzoql3356' diff --git a/projects/Fermilab.yaml b/projects/Fermilab.yaml index 3cf07dd48..4cae3a9e5 100644 --- a/projects/Fermilab.yaml +++ b/projects/Fermilab.yaml @@ -7,3 +7,4 @@ PIName: Joe Boyd Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/Flightworthy.yaml b/projects/Flightworthy.yaml index 5eced7b7e..4e7133d58 100644 --- a/projects/Flightworthy.yaml +++ b/projects/Flightworthy.yaml @@ -9,3 +9,4 @@ ID: '654' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/Fluka.yaml b/projects/Fluka.yaml index cc1c502d1..a238f3530 100644 --- a/projects/Fluka.yaml +++ b/projects/Fluka.yaml @@ -7,3 +7,4 @@ PIName: Sunil Chitra Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/FutureColliders.yaml b/projects/FutureColliders.yaml index f810610d7..28730aa4a 100644 --- a/projects/FutureColliders.yaml +++ b/projects/FutureColliders.yaml @@ -10,3 +10,4 @@ PIName: Sergei Chekanov Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/26xdp9lwzmhd' diff --git a/projects/GATech_Brown.yaml b/projects/GATech_Brown.yaml index b041fcaa9..3ed60ac31 100644 --- a/projects/GATech_Brown.yaml +++ b/projects/GATech_Brown.yaml @@ -9,3 +9,4 @@ ID: '657' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/GATech_Chau.yaml b/projects/GATech_Chau.yaml index 773293681..a563cec72 100644 --- a/projects/GATech_Chau.yaml +++ b/projects/GATech_Chau.yaml @@ -9,3 +9,4 @@ ID: '595' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/GATech_Coogan.yaml b/projects/GATech_Coogan.yaml index 5ccf90490..155582a51 100644 --- a/projects/GATech_Coogan.yaml +++ b/projects/GATech_Coogan.yaml @@ -10,3 +10,4 @@ PIName: Samuel Coogan Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/GATech_Jezghani.yaml b/projects/GATech_Jezghani.yaml index 67e35e16d..58b14015f 100644 --- a/projects/GATech_Jezghani.yaml +++ b/projects/GATech_Jezghani.yaml @@ -8,3 +8,4 @@ PIName: Aaron Jezghani Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/GATech_Lang.yaml b/projects/GATech_Lang.yaml index 0086f08db..1e77546b0 100644 --- a/projects/GATech_Lang.yaml +++ b/projects/GATech_Lang.yaml @@ -8,3 +8,4 @@ PIName: Karl Lang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/GATech_PACE.yaml b/projects/GATech_PACE.yaml index 3db07ef0a..2f89b9d2e 100644 --- a/projects/GATech_PACE.yaml +++ b/projects/GATech_PACE.yaml @@ -12,3 +12,4 @@ ID: '775' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/GATech_Randall.yaml b/projects/GATech_Randall.yaml index b6724a887..92ebb84ef 100644 --- a/projects/GATech_Randall.yaml +++ b/projects/GATech_Randall.yaml @@ -9,3 +9,4 @@ ID: '595' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/GATech_Ross.yaml b/projects/GATech_Ross.yaml index 9b35ddf2c..cd966be17 100644 --- a/projects/GATech_Ross.yaml +++ b/projects/GATech_Ross.yaml @@ -9,3 +9,4 @@ ID: '798' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/GATech_Sholl.yaml b/projects/GATech_Sholl.yaml index 42dbebb8d..0a9e354d6 100644 --- a/projects/GATech_Sholl.yaml +++ b/projects/GATech_Sholl.yaml @@ -9,3 +9,4 @@ ID: '848' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/GATech_Taboada.yaml b/projects/GATech_Taboada.yaml index 54451908c..5af612e8e 100644 --- a/projects/GATech_Taboada.yaml +++ b/projects/GATech_Taboada.yaml @@ -9,3 +9,4 @@ ID: '707' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/GLUEX.yaml b/projects/GLUEX.yaml index 81dcc0677..c4ee9e6fc 100644 --- a/projects/GLUEX.yaml +++ b/projects/GLUEX.yaml @@ -7,3 +7,4 @@ PIName: Kurt Strosahl Sponsor: VirtualOrganization: Name: JLab +InstitutionID: 'https://osg-htc.org/iid/hlz41oydapzn' diff --git a/projects/GPCRbinders.yaml b/projects/GPCRbinders.yaml index 4935b5ce2..fc0fc6bf1 100644 --- a/projects/GPCRbinders.yaml +++ b/projects/GPCRbinders.yaml @@ -9,3 +9,4 @@ PIName: Christopher Bahl Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ea601omjb65w' diff --git a/projects/GPN.yaml b/projects/GPN.yaml index eacf24fcb..250f4cdc4 100644 --- a/projects/GPN.yaml +++ b/projects/GPN.yaml @@ -7,3 +7,4 @@ PIName: James Deaton Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ssmtibyuojo6' diff --git a/projects/GRAPLEr.yaml b/projects/GRAPLEr.yaml index 7a36b0a56..3f660b7bd 100644 --- a/projects/GRAPLEr.yaml +++ b/projects/GRAPLEr.yaml @@ -15,11 +15,12 @@ Description: The GLEON Research And PRAGMA Lake Expedition (GRAPLE) is a collabo enable large numbers of model simulations to be executed concurrently across the distributed computing resources. Third, a Web service interface allows end users to submit job requests to the system using client libraries that - integrate with the R statistical computing environment. + integrate with the R statistical computing environment. FieldOfScience: Ecological and Environmental Sciences ID: '574' -Organization: Pacific Rim Application and Grid Middleware Assembly (PRAGMA) +Organization: Pacific Rim Application and Grid Middleware Assembly (PRAGMA) PIName: Shava Smallen Sponsor: CampusGrid: - Name: OSG Connect \ No newline at end of file + Name: OSG Connect +InstitutionID: "https://osg-htc.org/iid/06wup3aye2t7" diff --git a/projects/GRASP.yaml b/projects/GRASP.yaml index f0ae954e4..fef473ec3 100644 --- a/projects/GRASP.yaml +++ b/projects/GRASP.yaml @@ -9,3 +9,4 @@ PIName: Richard Irving Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f697s61oo78e' diff --git a/projects/GRScorrelation.yaml b/projects/GRScorrelation.yaml index fa96dfc84..d0ffdfc1e 100644 --- a/projects/GRScorrelation.yaml +++ b/projects/GRScorrelation.yaml @@ -23,3 +23,4 @@ PIName: Daniel J. Katz Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/vfjpi4twqspj' diff --git a/projects/GSU_ARCTIC.yaml b/projects/GSU_ARCTIC.yaml index b3a0ca405..787ad0cb3 100644 --- a/projects/GSU_ARCTIC.yaml +++ b/projects/GSU_ARCTIC.yaml @@ -3,3 +3,4 @@ Description: https://arctic.gsu.edu/ FieldOfScience: Research Computing Organization: Georgia State University PIName: Suranga Edirisinghe +InstitutionID: 'https://osg-htc.org/iid/ybl3snr9pbs1' diff --git a/projects/GSU_Maimon.yaml b/projects/GSU_Maimon.yaml index a5c70ac35..cd34eb8ef 100644 --- a/projects/GSU_Maimon.yaml +++ b/projects/GSU_Maimon.yaml @@ -8,3 +8,4 @@ PIName: David Maimon Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ybl3snr9pbs1' diff --git a/projects/GTConvertHTC.yaml b/projects/GTConvertHTC.yaml index ce62a8896..413e54ef6 100644 --- a/projects/GTConvertHTC.yaml +++ b/projects/GTConvertHTC.yaml @@ -7,3 +7,4 @@ PIName: Mehmet Belgin Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/GWU_OTSStaff.yaml b/projects/GWU_OTSStaff.yaml index ecc3c31c5..df466bd5b 100644 --- a/projects/GWU_OTSStaff.yaml +++ b/projects/GWU_OTSStaff.yaml @@ -9,3 +9,4 @@ ID: '703' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/67icxo2r0nw7' diff --git a/projects/GWU_Orti.yaml b/projects/GWU_Orti.yaml index 7d4e98cdd..d39b0b9d0 100644 --- a/projects/GWU_Orti.yaml +++ b/projects/GWU_Orti.yaml @@ -11,3 +11,4 @@ ID: '792' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/67icxo2r0nw7' diff --git a/projects/GWU_TikidjiHamburyan.yaml b/projects/GWU_TikidjiHamburyan.yaml index df922b687..c598eb2e7 100644 --- a/projects/GWU_TikidjiHamburyan.yaml +++ b/projects/GWU_TikidjiHamburyan.yaml @@ -9,3 +9,4 @@ ID: '640' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/67icxo2r0nw7' diff --git a/projects/GanForAuto.yaml b/projects/GanForAuto.yaml index 62bcf0cf9..4d9fdce8a 100644 --- a/projects/GanForAuto.yaml +++ b/projects/GanForAuto.yaml @@ -14,3 +14,4 @@ PIName: Xin Li Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/Gateway_DistribMedicalAI.yaml b/projects/Gateway_DistribMedicalAI.yaml index 9d4623ebe..2a65d3da7 100644 --- a/projects/Gateway_DistribMedicalAI.yaml +++ b/projects/Gateway_DistribMedicalAI.yaml @@ -7,3 +7,4 @@ PIName: Hieu Nguyen Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/oya34s2ysser' diff --git a/projects/Genie.yaml b/projects/Genie.yaml index c7ef800d4..f1cc0ed4e 100644 --- a/projects/Genie.yaml +++ b/projects/Genie.yaml @@ -12,3 +12,4 @@ PIName: Gabriel Nathan Perdue Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/GenomicIntegration.yaml b/projects/GenomicIntegration.yaml index 677729d1e..1cd5f578c 100644 --- a/projects/GenomicIntegration.yaml +++ b/projects/GenomicIntegration.yaml @@ -7,3 +7,4 @@ PIName: Casey Greene Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ay2n55g6y1cq' diff --git a/projects/GeoTunnel.yaml b/projects/GeoTunnel.yaml index 4fff99082..b1610889e 100644 --- a/projects/GeoTunnel.yaml +++ b/projects/GeoTunnel.yaml @@ -7,3 +7,4 @@ PIName: Elena Guardincerri Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/p3r6zb1vwk63' diff --git a/projects/GlassySystems.yaml b/projects/GlassySystems.yaml index 19e465379..f4f1ec4f0 100644 --- a/projects/GlassySystems.yaml +++ b/projects/GlassySystems.yaml @@ -22,3 +22,4 @@ PIName: David Reichman Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/avy4x5r4jsrw' diff --git a/projects/GlobalDH.yaml b/projects/GlobalDH.yaml index ef9ec5ca4..e7265e5f2 100644 --- a/projects/GlobalDH.yaml +++ b/projects/GlobalDH.yaml @@ -7,3 +7,4 @@ PIName: Kang Wang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gpeckuwpdnrs' diff --git a/projects/Groundhog.yaml b/projects/Groundhog.yaml index c2ef65f4d..c45aa1b7b 100644 --- a/projects/Groundhog.yaml +++ b/projects/Groundhog.yaml @@ -9,3 +9,4 @@ PIName: Eric Halgren Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/Guam_Bentlage.yaml b/projects/Guam_Bentlage.yaml index 498e8a20c..4032e5fec 100644 --- a/projects/Guam_Bentlage.yaml +++ b/projects/Guam_Bentlage.yaml @@ -9,3 +9,4 @@ ID: '651' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/pe5ponomqp4t' diff --git a/projects/HASHA.yaml b/projects/HASHA.yaml index 4461733d7..9b26cb32a 100644 --- a/projects/HASHA.yaml +++ b/projects/HASHA.yaml @@ -12,3 +12,4 @@ PIName: Brian Cheda Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/c6ehbi2dyh8h' diff --git a/projects/HCBData.yaml b/projects/HCBData.yaml index 0595aecfb..1430f9ac6 100644 --- a/projects/HCBData.yaml +++ b/projects/HCBData.yaml @@ -14,3 +14,4 @@ PIName: Brad Minnery Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/thy4rviykeph' diff --git a/projects/HCCLocalSubmit.yaml b/projects/HCCLocalSubmit.yaml index e0c13b408..45eee7555 100644 --- a/projects/HCCLocalSubmit.yaml +++ b/projects/HCCLocalSubmit.yaml @@ -7,3 +7,4 @@ PIName: Derek Weitzel Sponsor: VirtualOrganization: Name: HCC +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/HCC_staff.yaml b/projects/HCC_staff.yaml index 02197bdd0..015fa33aa 100644 --- a/projects/HCC_staff.yaml +++ b/projects/HCC_staff.yaml @@ -3,3 +3,4 @@ Department: Holland Computing Center FieldOfScience: Computer Science Organization: University of Nebraska-Lincoln PIName: Adam Caprez +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/HL-LHC-TP.yaml b/projects/HL-LHC-TP.yaml index 32a9f8600..15a0d17d8 100644 --- a/projects/HL-LHC-TP.yaml +++ b/projects/HL-LHC-TP.yaml @@ -10,3 +10,4 @@ PIName: Meenakshi Narain Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/0ytxfy0n4hol' diff --git a/projects/HPS.yaml b/projects/HPS.yaml index c7906b2a8..95f83ac11 100644 --- a/projects/HPS.yaml +++ b/projects/HPS.yaml @@ -7,3 +7,4 @@ PIName: Thomas Britton Sponsor: VirtualOrganization: Name: JLab +InstitutionID: 'https://osg-htc.org/iid/hlz41oydapzn' diff --git a/projects/HRRRMining.yaml b/projects/HRRRMining.yaml index 65979af06..feb58635b 100644 --- a/projects/HRRRMining.yaml +++ b/projects/HRRRMining.yaml @@ -11,3 +11,4 @@ PIName: Brian Blaylock Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/iwlonrroeaal' diff --git a/projects/HTCC.yaml b/projects/HTCC.yaml index 7b21335bd..3f0a68cda 100644 --- a/projects/HTCC.yaml +++ b/projects/HTCC.yaml @@ -8,3 +8,4 @@ PIName: Rob Quick Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/uws6kivcttuc' diff --git a/projects/Harvard_Fox.yaml b/projects/Harvard_Fox.yaml index b77b895be..bdf11c3a8 100644 --- a/projects/Harvard_Fox.yaml +++ b/projects/Harvard_Fox.yaml @@ -8,3 +8,4 @@ PIName: Michael Fox Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/n1kbnzl7kyiv' diff --git a/projects/Harvard_Wofsy.yaml b/projects/Harvard_Wofsy.yaml index 34f5545a4..188627331 100644 --- a/projects/Harvard_Wofsy.yaml +++ b/projects/Harvard_Wofsy.yaml @@ -8,3 +8,4 @@ PIName: Steven Wofsy Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/n1kbnzl7kyiv' diff --git a/projects/Hawaii_Dodds.yaml b/projects/Hawaii_Dodds.yaml index d57e66689..63d1888c8 100644 --- a/projects/Hawaii_Dodds.yaml +++ b/projects/Hawaii_Dodds.yaml @@ -13,3 +13,4 @@ PIName: Stanley Dodds Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/34mcskejwysy' diff --git a/projects/Hawaii_Doetinchem.yaml b/projects/Hawaii_Doetinchem.yaml index 1e11596f7..fbc80d7d3 100644 --- a/projects/Hawaii_Doetinchem.yaml +++ b/projects/Hawaii_Doetinchem.yaml @@ -9,3 +9,4 @@ ID: '580' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/34mcskejwysy' diff --git a/projects/Hawaii_Gorham.yaml b/projects/Hawaii_Gorham.yaml index 5bc1cd4e4..120c363ca 100644 --- a/projects/Hawaii_Gorham.yaml +++ b/projects/Hawaii_Gorham.yaml @@ -7,3 +7,4 @@ PIName: Peter W. Gorham Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/34mcskejwysy' diff --git a/projects/HealthInformatics.yaml b/projects/HealthInformatics.yaml index 7bbc9903c..614c45afa 100644 --- a/projects/HealthInformatics.yaml +++ b/projects/HealthInformatics.yaml @@ -20,3 +20,4 @@ PIName: Karl Jablonowski Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8lpmoeouw66o' diff --git a/projects/HypergraphDegreeSeq.yaml b/projects/HypergraphDegreeSeq.yaml index a4c9d9fea..7d4e71c7b 100644 --- a/projects/HypergraphDegreeSeq.yaml +++ b/projects/HypergraphDegreeSeq.yaml @@ -11,3 +11,4 @@ PIName: Sarah Lynne Behrens Sponsor: VirtualOrganization: Name: HCC +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/IAState_ITStaff.yaml b/projects/IAState_ITStaff.yaml index a59fe8747..515fe8a78 100644 --- a/projects/IAState_ITStaff.yaml +++ b/projects/IAState_ITStaff.yaml @@ -9,3 +9,4 @@ ID: '761' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wbwnw037cybm' diff --git a/projects/IAState_Iadecola.yaml b/projects/IAState_Iadecola.yaml index 84a74f6c9..d72fe3f96 100644 --- a/projects/IAState_Iadecola.yaml +++ b/projects/IAState_Iadecola.yaml @@ -7,3 +7,4 @@ PIName: Thomas Iadecola Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wbwnw037cybm' diff --git a/projects/IBN130001-Plus.yaml b/projects/IBN130001-Plus.yaml index 3923c7548..450ed3a8f 100644 --- a/projects/IBN130001-Plus.yaml +++ b/projects/IBN130001-Plus.yaml @@ -7,3 +7,4 @@ PIName: Donald Krieger Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/2ayx10b74xua' diff --git a/projects/IITPROSPECT.yaml b/projects/IITPROSPECT.yaml index 127884848..058287e5c 100644 --- a/projects/IITPROSPECT.yaml +++ b/projects/IITPROSPECT.yaml @@ -7,3 +7,4 @@ PIName: Bryce Littlejohn Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3jn3w1ccwxwd' diff --git a/projects/IIT_Cheng.yaml b/projects/IIT_Cheng.yaml index 43dac93a3..10c52b1d2 100644 --- a/projects/IIT_Cheng.yaml +++ b/projects/IIT_Cheng.yaml @@ -9,3 +9,4 @@ ID: '796' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3jn3w1ccwxwd' diff --git a/projects/IIT_Kang.yaml b/projects/IIT_Kang.yaml index 1961e9529..4ef52e08a 100644 --- a/projects/IIT_Kang.yaml +++ b/projects/IIT_Kang.yaml @@ -8,3 +8,4 @@ PIName: Lulu Kang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3jn3w1ccwxwd' diff --git a/projects/IIT_Li.yaml b/projects/IIT_Li.yaml index 6f95bb31f..b561a6fa6 100644 --- a/projects/IIT_Li.yaml +++ b/projects/IIT_Li.yaml @@ -5,3 +5,4 @@ Department: Applied Mathematics FieldOfScience: Materials Science Organization: Illinois Institute of Technology PIName: Shuwang Li +InstitutionID: 'https://osg-htc.org/iid/3jn3w1ccwxwd' diff --git a/projects/IIT_Minh.yaml b/projects/IIT_Minh.yaml index bcadc8c9d..99a2c4bfe 100644 --- a/projects/IIT_Minh.yaml +++ b/projects/IIT_Minh.yaml @@ -6,3 +6,4 @@ Department: Chemistry FieldOfScience: Biological and Biomedical Sciences Organization: Illinois Institute of Technology PIName: David Minh +InstitutionID: 'https://osg-htc.org/iid/3jn3w1ccwxwd' diff --git a/projects/IIT_Rosa.yaml b/projects/IIT_Rosa.yaml index 43a7c9d78..72741c442 100644 --- a/projects/IIT_Rosa.yaml +++ b/projects/IIT_Rosa.yaml @@ -7,3 +7,4 @@ PIName: Nelson Rosa Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3jn3w1ccwxwd' diff --git a/projects/IIT_Wereszczynski.yaml b/projects/IIT_Wereszczynski.yaml index c6c7b9a28..b7c7739b7 100644 --- a/projects/IIT_Wereszczynski.yaml +++ b/projects/IIT_Wereszczynski.yaml @@ -7,3 +7,4 @@ PIName: Jeff Wereszczynski Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3jn3w1ccwxwd' diff --git a/projects/IIT_Zhong.yaml b/projects/IIT_Zhong.yaml index 69fb8928d..b6098425d 100644 --- a/projects/IIT_Zhong.yaml +++ b/projects/IIT_Zhong.yaml @@ -7,3 +7,4 @@ PIName: Ming Zhong Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3jn3w1ccwxwd' diff --git a/projects/IRIS-CI.yaml b/projects/IRIS-CI.yaml index 505896b27..810aa31a0 100644 --- a/projects/IRIS-CI.yaml +++ b/projects/IRIS-CI.yaml @@ -8,3 +8,4 @@ ID: '560' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nhz3r9d0308l' diff --git a/projects/IRRI.yaml b/projects/IRRI.yaml index 4ca57ad18..591a3c38a 100644 --- a/projects/IRRI.yaml +++ b/projects/IRRI.yaml @@ -7,3 +7,4 @@ PIName: Mats Rynge Sponsor: CampusGrid: Name: ISI +InstitutionID: 'https://osg-htc.org/iid/6edduwj65dlr' diff --git a/projects/IU-PTI_Airavata.yaml b/projects/IU-PTI_Airavata.yaml index e73eb8089..41a23564f 100644 --- a/projects/IU-PTI_Airavata.yaml +++ b/projects/IU-PTI_Airavata.yaml @@ -7,3 +7,4 @@ PIName: Rob Quick Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uws6kivcttuc' diff --git a/projects/IU_Tang.yaml b/projects/IU_Tang.yaml index 51d501bb4..5d377db26 100644 --- a/projects/IU_Tang.yaml +++ b/projects/IU_Tang.yaml @@ -9,3 +9,4 @@ ID: '762' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uws6kivcttuc' diff --git a/projects/IVSelection.yaml b/projects/IVSelection.yaml index 0e28dbcf8..adc0e389b 100644 --- a/projects/IVSelection.yaml +++ b/projects/IVSelection.yaml @@ -8,3 +8,4 @@ PIName: Hao Xu Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zy99b9jjoqpb' diff --git a/projects/IceCube.yaml b/projects/IceCube.yaml index d24c154de..cac8fdfb7 100644 --- a/projects/IceCube.yaml +++ b/projects/IceCube.yaml @@ -22,3 +22,4 @@ PIName: Francis Halzen Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/IceCube_2022_Halzen.yaml b/projects/IceCube_2022_Halzen.yaml index 36e522beb..d7386d664 100644 --- a/projects/IceCube_2022_Halzen.yaml +++ b/projects/IceCube_2022_Halzen.yaml @@ -16,3 +16,4 @@ PIName: Francis Halzen Sponsor: CampusGrid: Name: PATh Facility +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/Illinois_2022_Tsokaros.yaml b/projects/Illinois_2022_Tsokaros.yaml index a4c114fec..d501ed6bb 100644 --- a/projects/Illinois_2022_Tsokaros.yaml +++ b/projects/Illinois_2022_Tsokaros.yaml @@ -7,3 +7,4 @@ PIName: Antonios Tsokaros Sponsor: CampusGrid: Name: PATh Facility +InstitutionID: 'https://osg-htc.org/iid/10izzs5e7v1r' diff --git a/projects/Illinois_Jackson.yaml b/projects/Illinois_Jackson.yaml index ea1291ccb..e23239617 100644 --- a/projects/Illinois_Jackson.yaml +++ b/projects/Illinois_Jackson.yaml @@ -7,3 +7,4 @@ PIName: Nicholas Jackson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/10izzs5e7v1r' diff --git a/projects/Illinois_Petravick.yaml b/projects/Illinois_Petravick.yaml index b18a8d3b5..d458eaea7 100644 --- a/projects/Illinois_Petravick.yaml +++ b/projects/Illinois_Petravick.yaml @@ -7,3 +7,4 @@ PIName: Donald Petravick Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/10izzs5e7v1r' diff --git a/projects/Illinois_Vieira.yaml b/projects/Illinois_Vieira.yaml index ecd72a78f..f64f7b990 100644 --- a/projects/Illinois_Vieira.yaml +++ b/projects/Illinois_Vieira.yaml @@ -9,3 +9,4 @@ ID: '831' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/10izzs5e7v1r' diff --git a/projects/IngaCFMID.yaml b/projects/IngaCFMID.yaml index 3c101bff3..f42f3af42 100644 --- a/projects/IngaCFMID.yaml +++ b/projects/IngaCFMID.yaml @@ -14,3 +14,4 @@ PIName: Thomas A. Kursar Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/iwlonrroeaal' diff --git a/projects/Internet2.yaml b/projects/Internet2.yaml index 01eb28dd2..e268f077c 100644 --- a/projects/Internet2.yaml +++ b/projects/Internet2.yaml @@ -9,3 +9,4 @@ ID: '634' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/rdbgla0ef33b' diff --git a/projects/Internet2_MS-CC.yaml b/projects/Internet2_MS-CC.yaml index ec2e94435..8893342c9 100644 --- a/projects/Internet2_MS-CC.yaml +++ b/projects/Internet2_MS-CC.yaml @@ -7,3 +7,4 @@ PIName: Ana Hunsinger Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/rdbgla0ef33b' diff --git a/projects/JAM.yaml b/projects/JAM.yaml index 952a72465..a0361cf09 100644 --- a/projects/JAM.yaml +++ b/projects/JAM.yaml @@ -7,3 +7,4 @@ PIName: Thomas Britton Sponsor: VirtualOrganization: Name: JLab +InstitutionID: 'https://osg-htc.org/iid/hlz41oydapzn' diff --git a/projects/JHU_Howard.yaml b/projects/JHU_Howard.yaml index 553e6533c..1933fcfa7 100644 --- a/projects/JHU_Howard.yaml +++ b/projects/JHU_Howard.yaml @@ -9,3 +9,4 @@ PIName: James P. Howard, II Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3fml5tx2uhe0' diff --git a/projects/JHU_Zhang.yaml b/projects/JHU_Zhang.yaml index 4f42e0b9f..b58d3625d 100644 --- a/projects/JHU_Zhang.yaml +++ b/projects/JHU_Zhang.yaml @@ -3,3 +3,4 @@ FieldOfScience: Physics Organization: Johns Hopkins University Department: Department of Physics PIName: Yahui Zhang +InstitutionID: 'https://osg-htc.org/iid/3fml5tx2uhe0' diff --git a/projects/JLAB-TEST.yaml b/projects/JLAB-TEST.yaml index 6657a8bad..ec494e3a1 100644 --- a/projects/JLAB-TEST.yaml +++ b/projects/JLAB-TEST.yaml @@ -6,3 +6,4 @@ PIName: Kurt Strosahl Sponsor: VirtualOrganization: Name: JLab +InstitutionID: 'https://osg-htc.org/iid/hlz41oydapzn' diff --git a/projects/JLAB.EIC.yaml b/projects/JLAB.EIC.yaml index b4ba4b75a..fb8ce99a9 100644 --- a/projects/JLAB.EIC.yaml +++ b/projects/JLAB.EIC.yaml @@ -7,3 +7,4 @@ PIName: Thomas Britton Sponsor: VirtualOrganization: Name: JLab +InstitutionID: 'https://osg-htc.org/iid/hlz41oydapzn' diff --git a/projects/JLabMOLLER.yaml b/projects/JLabMOLLER.yaml index e07cd9d15..02e00f9e7 100644 --- a/projects/JLabMOLLER.yaml +++ b/projects/JLabMOLLER.yaml @@ -7,3 +7,4 @@ PIName: Wouter Deconinck Sponsor: VirtualOrganization: Name: JLab +InstitutionID: 'https://osg-htc.org/iid/hlz41oydapzn' diff --git a/projects/JacksonLab_Awe.yaml b/projects/JacksonLab_Awe.yaml index be4c5248a..5afde05ab 100644 --- a/projects/JacksonLab_Awe.yaml +++ b/projects/JacksonLab_Awe.yaml @@ -7,3 +7,4 @@ PIName: Olaitan Awe Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gf9d5xlhbmrh' diff --git a/projects/JediNetworks.yaml b/projects/JediNetworks.yaml index 77564d6f2..9baa171e8 100644 --- a/projects/JediNetworks.yaml +++ b/projects/JediNetworks.yaml @@ -8,3 +8,4 @@ PIName: Bradley Voytek Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/KORDrugdiscov.yaml b/projects/KORDrugdiscov.yaml index 9ccddb0a1..883db1a15 100644 --- a/projects/KORDrugdiscov.yaml +++ b/projects/KORDrugdiscov.yaml @@ -16,3 +16,4 @@ PIName: David Toth Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/apzl1q10g59m' diff --git a/projects/KOTO.yaml b/projects/KOTO.yaml index e988bef0f..4773164e0 100644 --- a/projects/KOTO.yaml +++ b/projects/KOTO.yaml @@ -31,6 +31,8 @@ Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' + ### Uncomment the ResourceAllocations block if this project can make use of ### one or more XRAC (XSEDE) or other HPC allocations. diff --git a/projects/KSU_CIS625.yaml b/projects/KSU_CIS625.yaml index 2fb370123..07c665346 100644 --- a/projects/KSU_CIS625.yaml +++ b/projects/KSU_CIS625.yaml @@ -9,3 +9,4 @@ ID: '749' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/kxvagjjgn71t' diff --git a/projects/KSU_Comer.yaml b/projects/KSU_Comer.yaml index 31f38fb5f..a021779a1 100644 --- a/projects/KSU_Comer.yaml +++ b/projects/KSU_Comer.yaml @@ -7,3 +7,4 @@ PIName: Jeff Comer Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/kxvagjjgn71t' diff --git a/projects/KSU_Li.yaml b/projects/KSU_Li.yaml index b8725b746..b10840146 100644 --- a/projects/KSU_Li.yaml +++ b/projects/KSU_Li.yaml @@ -9,3 +9,4 @@ ID: '584' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/kxvagjjgn71t' diff --git a/projects/KSU_Ng.yaml b/projects/KSU_Ng.yaml index e20055032..74896a58b 100644 --- a/projects/KSU_Ng.yaml +++ b/projects/KSU_Ng.yaml @@ -9,3 +9,4 @@ ID: '827' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/kxvagjjgn71t' diff --git a/projects/KSU_Staff.yaml b/projects/KSU_Staff.yaml index 58bf042c6..fd8930f50 100644 --- a/projects/KSU_Staff.yaml +++ b/projects/KSU_Staff.yaml @@ -9,3 +9,4 @@ ID: '663' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/kxvagjjgn71t' diff --git a/projects/KSU_Thumm.yaml b/projects/KSU_Thumm.yaml index 88fa23659..17617fb02 100644 --- a/projects/KSU_Thumm.yaml +++ b/projects/KSU_Thumm.yaml @@ -8,3 +8,4 @@ PIName: Uwe Thumm Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/kxvagjjgn71t' diff --git a/projects/Kennesaw_RC.yaml b/projects/Kennesaw_RC.yaml index 2539f48b8..c9e514ca8 100644 --- a/projects/Kennesaw_RC.yaml +++ b/projects/Kennesaw_RC.yaml @@ -7,3 +7,4 @@ PIName: Ramazan Aygun Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ergs0rt3q1i6' diff --git a/projects/KentState_Strickland.yaml b/projects/KentState_Strickland.yaml index 07ab8cfe6..fdae5d1d1 100644 --- a/projects/KentState_Strickland.yaml +++ b/projects/KentState_Strickland.yaml @@ -7,3 +7,4 @@ PIName: Michael Strickland Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2iujc1axzu6d' diff --git a/projects/KentState_Thomas.yaml b/projects/KentState_Thomas.yaml index 536d3a460..c5e92b3fa 100644 --- a/projects/KentState_Thomas.yaml +++ b/projects/KentState_Thomas.yaml @@ -6,3 +6,4 @@ PIName: Philip Thomas Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2iujc1axzu6d' diff --git a/projects/KickstarterDataAnalysis.yaml b/projects/KickstarterDataAnalysis.yaml index 02212409f..d458cc998 100644 --- a/projects/KickstarterDataAnalysis.yaml +++ b/projects/KickstarterDataAnalysis.yaml @@ -23,3 +23,4 @@ PIName: Feng Bill Shi Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/KnowledgeLab.yaml b/projects/KnowledgeLab.yaml index ce6975b5f..815f3dd84 100644 --- a/projects/KnowledgeLab.yaml +++ b/projects/KnowledgeLab.yaml @@ -7,3 +7,4 @@ PIName: James Evans Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/KnowledgeSys.yaml b/projects/KnowledgeSys.yaml index 174efc058..ac2213726 100644 --- a/projects/KnowledgeSys.yaml +++ b/projects/KnowledgeSys.yaml @@ -21,3 +21,4 @@ PIName: Michael J. Culbertson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/10izzs5e7v1r' diff --git a/projects/KoBIV.yaml b/projects/KoBIV.yaml index 781e1b4b2..f37a722da 100644 --- a/projects/KoBIV.yaml +++ b/projects/KoBIV.yaml @@ -7,3 +7,4 @@ PIName: Stanley Iat-Meng KO Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/db53o5sfgkhl' diff --git a/projects/LANL_Chennupati.yaml b/projects/LANL_Chennupati.yaml index 30461e0a0..fd89400f9 100644 --- a/projects/LANL_Chennupati.yaml +++ b/projects/LANL_Chennupati.yaml @@ -9,3 +9,4 @@ ID: '734' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/p3r6zb1vwk63' diff --git a/projects/LArSoft.yaml b/projects/LArSoft.yaml index 21d52f958..accc8e59d 100644 --- a/projects/LArSoft.yaml +++ b/projects/LArSoft.yaml @@ -9,3 +9,4 @@ PIName: Erica Snider Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/LBNL_Jensen.yaml b/projects/LBNL_Jensen.yaml index 9cf667b50..8bbf73497 100644 --- a/projects/LBNL_Jensen.yaml +++ b/projects/LBNL_Jensen.yaml @@ -3,3 +3,4 @@ Description: Spectral reconstruction of laser-driven secondary light sources FieldOfScience: Physics Organization: Lawrence Berkeley National Laboratory PIName: Kyle Jensen +InstitutionID: 'https://osg-htc.org/iid/bvf12qyqplv6' diff --git a/projects/LEARN_CITeam.yaml b/projects/LEARN_CITeam.yaml index b9e10ee68..9474031f0 100644 --- a/projects/LEARN_CITeam.yaml +++ b/projects/LEARN_CITeam.yaml @@ -9,3 +9,4 @@ ID: '670' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wd82n7t2q410' diff --git a/projects/LGAMUT.yaml b/projects/LGAMUT.yaml index d02f52158..d23d0f906 100644 --- a/projects/LGAMUT.yaml +++ b/projects/LGAMUT.yaml @@ -7,3 +7,4 @@ PIName: Debashis Ghosh Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/m27szfeh7gut' diff --git a/projects/LIGO.yaml b/projects/LIGO.yaml index 09df76fc4..e9482d1fc 100644 --- a/projects/LIGO.yaml +++ b/projects/LIGO.yaml @@ -7,3 +7,4 @@ PIName: Peter F. Couvares Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/d5uszq7419m3' diff --git a/projects/LLNL_Sochat.yaml b/projects/LLNL_Sochat.yaml index 5cc4a0e9d..72a7fc425 100644 --- a/projects/LLNL_Sochat.yaml +++ b/projects/LLNL_Sochat.yaml @@ -7,3 +7,4 @@ PIName: Vanessa Sochat Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/p4yzz1wxq2g3' diff --git a/projects/LSMSA_Burkman.yaml b/projects/LSMSA_Burkman.yaml index d8d6fde4c..401e5dc2f 100644 --- a/projects/LSMSA_Burkman.yaml +++ b/projects/LSMSA_Burkman.yaml @@ -1,7 +1,7 @@ -Description: Solving optimization problems via genetic algorithms +Description: Solving optimization problems via genetic algorithms Department: Math and Computer Science FieldOfScience: Computer Sciences -Organization: Louisiana School for Math, Science, and the Arts +Organization: Louisiana School for Math, Science, and the Arts PIName: John Bradford Burkman ID: '638' @@ -9,3 +9,5 @@ ID: '638' Sponsor: CampusGrid: Name: OSG Connect + +InstitutionID: "https://osg-htc.org/iid/trggbvycsbve" diff --git a/projects/LSUHSC_CanavierLab.yaml b/projects/LSUHSC_CanavierLab.yaml index 24ed3cec7..382c9fde3 100644 --- a/projects/LSUHSC_CanavierLab.yaml +++ b/projects/LSUHSC_CanavierLab.yaml @@ -9,3 +9,4 @@ ID: '605' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/9idmt4uz33c1' diff --git a/projects/LSUHSC_Lin.yaml b/projects/LSUHSC_Lin.yaml index ab03d17dc..3fc5cb260 100644 --- a/projects/LSUHSC_Lin.yaml +++ b/projects/LSUHSC_Lin.yaml @@ -9,3 +9,4 @@ ID: '607' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/9idmt4uz33c1' diff --git a/projects/LSUHSC_Yu.yaml b/projects/LSUHSC_Yu.yaml index 005a293bf..966c6fa5a 100644 --- a/projects/LSUHSC_Yu.yaml +++ b/projects/LSUHSC_Yu.yaml @@ -9,3 +9,4 @@ ID: '755' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/9idmt4uz33c1' diff --git a/projects/LSU_Cox.yaml b/projects/LSU_Cox.yaml index 07b18922c..1203d489f 100644 --- a/projects/LSU_Cox.yaml +++ b/projects/LSU_Cox.yaml @@ -5,3 +5,4 @@ Department: Department of Psychology FieldOfScience: Behavioral Science Organization: Louisiana State University PIName: Christopher Cox +InstitutionID: 'https://osg-htc.org/iid/lk45ajqlj7f1' diff --git a/projects/LSU_Wilson.yaml b/projects/LSU_Wilson.yaml index 0bf74d1db..3d693fd78 100644 --- a/projects/LSU_Wilson.yaml +++ b/projects/LSU_Wilson.yaml @@ -7,3 +7,4 @@ PIName: Justin Wilson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/lk45ajqlj7f1' diff --git a/projects/LancasterPPS.yaml b/projects/LancasterPPS.yaml index d5bb695c3..4af8d9bbb 100644 --- a/projects/LancasterPPS.yaml +++ b/projects/LancasterPPS.yaml @@ -9,3 +9,4 @@ ID: '568' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/dfdg98dgszv4' diff --git a/projects/Lariat.yaml b/projects/Lariat.yaml index 76bff518a..7ded04de3 100644 --- a/projects/Lariat.yaml +++ b/projects/Lariat.yaml @@ -7,3 +7,4 @@ PIName: Joe Boyd Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/Leaderbipartite.yaml b/projects/Leaderbipartite.yaml index 7d5865691..74afc6498 100644 --- a/projects/Leaderbipartite.yaml +++ b/projects/Leaderbipartite.yaml @@ -9,3 +9,4 @@ PIName: Jozsef Balogh Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/10izzs5e7v1r' diff --git a/projects/Lg-Attenuation.yaml b/projects/Lg-Attenuation.yaml index b1ef5988d..f96462afa 100644 --- a/projects/Lg-Attenuation.yaml +++ b/projects/Lg-Attenuation.yaml @@ -8,3 +8,4 @@ PIName: Andrea C Gallegos Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zoe98r1f2ztc' diff --git a/projects/LiuLab.yaml b/projects/LiuLab.yaml index 41f3dcc49..c2bd149ea 100644 --- a/projects/LiuLab.yaml +++ b/projects/LiuLab.yaml @@ -8,3 +8,4 @@ PIName: Kevin Jensen Liu Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wala2w0ka0gb' diff --git a/projects/LoyolaChicago_Li.yaml b/projects/LoyolaChicago_Li.yaml index d5537e138..098dfa797 100644 --- a/projects/LoyolaChicago_Li.yaml +++ b/projects/LoyolaChicago_Li.yaml @@ -9,3 +9,4 @@ ID: '689' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3zyvzg1ixzvw' diff --git a/projects/LyCfesc.yaml b/projects/LyCfesc.yaml index 79b848d5c..4810e58cb 100644 --- a/projects/LyCfesc.yaml +++ b/projects/LyCfesc.yaml @@ -8,3 +8,4 @@ ID: '541' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/MCBI.yaml b/projects/MCBI.yaml index 56f861b49..8ebc58165 100644 --- a/projects/MCBI.yaml +++ b/projects/MCBI.yaml @@ -9,3 +9,4 @@ ID: '652' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/n1kbnzl7kyiv' diff --git a/projects/MCP.yaml b/projects/MCP.yaml index 4e36965e9..0aab07ef2 100644 --- a/projects/MCP.yaml +++ b/projects/MCP.yaml @@ -9,3 +9,4 @@ PIName: C. S. Raman Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/atbdx81kfmv4' diff --git a/projects/MCSimulations.yaml b/projects/MCSimulations.yaml index 157e956ad..8ee851a18 100644 --- a/projects/MCSimulations.yaml +++ b/projects/MCSimulations.yaml @@ -7,3 +7,4 @@ PIName: Terrance Figy Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/p3nn2sljiwwl' diff --git a/projects/MCSpinLiquid.yaml b/projects/MCSpinLiquid.yaml index e7f104d4f..34245737d 100644 --- a/projects/MCSpinLiquid.yaml +++ b/projects/MCSpinLiquid.yaml @@ -7,3 +7,4 @@ PIName: John McGreevy Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/MEEG-group.yaml b/projects/MEEG-group.yaml index 040623732..97b0b5cf4 100644 --- a/projects/MEEG-group.yaml +++ b/projects/MEEG-group.yaml @@ -9,3 +9,4 @@ ID: '586' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/MFEKC.yaml b/projects/MFEKC.yaml index 1bdf4cfdc..130cae705 100644 --- a/projects/MFEKC.yaml +++ b/projects/MFEKC.yaml @@ -9,3 +9,4 @@ ID: '741' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/hjcl6b3vh3ox' diff --git a/projects/MFProteins.yaml b/projects/MFProteins.yaml index 8aa2ea11f..d6864bfbd 100644 --- a/projects/MFProteins.yaml +++ b/projects/MFProteins.yaml @@ -9,3 +9,4 @@ ID: '571' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/xhmnioxyd5ck' diff --git a/projects/MINT.yaml b/projects/MINT.yaml index 9beb1001a..4b8348203 100644 --- a/projects/MINT.yaml +++ b/projects/MINT.yaml @@ -11,3 +11,4 @@ Sponsor: ID: 14 Name: OSG Connect ID: 511 +InstitutionID: 'https://osg-htc.org/iid/6edduwj65dlr' diff --git a/projects/MIT_Akiyama.yaml b/projects/MIT_Akiyama.yaml index 51ead3418..7e200dd3e 100644 --- a/projects/MIT_Akiyama.yaml +++ b/projects/MIT_Akiyama.yaml @@ -7,3 +7,4 @@ PIName: Kazunori Akiyama Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/MIT_Chakraborty.yaml b/projects/MIT_Chakraborty.yaml index 4e065bf61..a890d5771 100644 --- a/projects/MIT_Chakraborty.yaml +++ b/projects/MIT_Chakraborty.yaml @@ -9,3 +9,4 @@ ID: '804' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/MIT_Choi.yaml b/projects/MIT_Choi.yaml index 145e36a09..8633892de 100644 --- a/projects/MIT_Choi.yaml +++ b/projects/MIT_Choi.yaml @@ -7,3 +7,4 @@ PIName: Soonwon Choi Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/MIT_Hill.yaml b/projects/MIT_Hill.yaml index e37a5aef9..39689bb22 100644 --- a/projects/MIT_Hill.yaml +++ b/projects/MIT_Hill.yaml @@ -23,3 +23,4 @@ ID: '795' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/MIT_Kardar.yaml b/projects/MIT_Kardar.yaml index 840e8646e..aed8ccd9e 100644 --- a/projects/MIT_Kardar.yaml +++ b/projects/MIT_Kardar.yaml @@ -7,3 +7,4 @@ PIName: Mehran Kardar Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/MIT_Takei.yaml b/projects/MIT_Takei.yaml index 659a0248d..9a6a1b3f8 100644 --- a/projects/MIT_Takei.yaml +++ b/projects/MIT_Takei.yaml @@ -4,3 +4,4 @@ Description: I am working on models for quantifying the effects on the change of FieldOfScience: Finance Organization: Massachusetts Institute of Technology PIName: Ikuo Takei +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/MLResearch.yaml b/projects/MLResearch.yaml index 72db889d1..3e4cb7476 100644 --- a/projects/MLResearch.yaml +++ b/projects/MLResearch.yaml @@ -11,3 +11,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ybl3snr9pbs1' diff --git a/projects/MMC_Leegon.yaml b/projects/MMC_Leegon.yaml index d19b177d7..0e287d72a 100644 --- a/projects/MMC_Leegon.yaml +++ b/projects/MMC_Leegon.yaml @@ -7,3 +7,4 @@ PIName: Jeffrey Leegon Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/szgkxvztsl07' diff --git a/projects/MMHA.yaml b/projects/MMHA.yaml index 3b84c0569..70c6a18b5 100644 --- a/projects/MMHA.yaml +++ b/projects/MMHA.yaml @@ -10,3 +10,4 @@ PIName: Ikuo Takei Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/MOLLER.yaml b/projects/MOLLER.yaml index 78b4b924b..663843f4d 100644 --- a/projects/MOLLER.yaml +++ b/projects/MOLLER.yaml @@ -10,3 +10,4 @@ PIName: Wouter Deconinck Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/hlz41oydapzn' diff --git a/projects/MOmega.yaml b/projects/MOmega.yaml index a4b3ba86d..d50b27cd4 100644 --- a/projects/MOmega.yaml +++ b/projects/MOmega.yaml @@ -7,3 +7,4 @@ PIName: Maxene Meier Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gpeckuwpdnrs' diff --git a/projects/MS-EinDRC.yaml b/projects/MS-EinDRC.yaml index 0427f74ac..e49db54ca 100644 --- a/projects/MS-EinDRC.yaml +++ b/projects/MS-EinDRC.yaml @@ -8,3 +8,4 @@ PIName: Jacob Pessin Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/yzcm7hs9f1d0' diff --git a/projects/MSKCC_Chodera.yaml b/projects/MSKCC_Chodera.yaml index 8614771f0..202b19c40 100644 --- a/projects/MSKCC_Chodera.yaml +++ b/projects/MSKCC_Chodera.yaml @@ -3,3 +3,4 @@ Description: We are developing a system to enable high throughput free energy ca FieldOfScience: Bioinformatics Organization: Memorial Sloan Kettering Cancer Center PIName: John Chodera +InstitutionID: 'https://osg-htc.org/iid/tna2ohxsca1r' diff --git a/projects/MSSM_Ali.yaml b/projects/MSSM_Ali.yaml index a403af31e..9d7d94f51 100644 --- a/projects/MSSM_Ali.yaml +++ b/projects/MSSM_Ali.yaml @@ -9,3 +9,4 @@ PIName: Rejwan Ali Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uwam2e6xh8l2' diff --git a/projects/MSState_2024_Chen.yaml b/projects/MSState_2024_Chen.yaml index 2bb55f99b..b3ea25a1a 100644 --- a/projects/MSState_2024_Chen.yaml +++ b/projects/MSState_2024_Chen.yaml @@ -5,4 +5,4 @@ Description: > FieldOfScience: Computer and Information Services Organization: Mississippi State University PIName: Zhiqian Chen - +InstitutionID: 'https://osg-htc.org/iid/imn1pe0dhcwc' diff --git a/projects/MSU_Berz.yaml b/projects/MSU_Berz.yaml index eb38a4bd8..7cbb311fd 100644 --- a/projects/MSU_Berz.yaml +++ b/projects/MSU_Berz.yaml @@ -9,3 +9,4 @@ ID: '635' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wala2w0ka0gb' diff --git a/projects/MSU_Colbry.yaml b/projects/MSU_Colbry.yaml index 9234a76ba..d2d84ec95 100644 --- a/projects/MSU_Colbry.yaml +++ b/projects/MSU_Colbry.yaml @@ -9,3 +9,4 @@ ID: '721' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wala2w0ka0gb' diff --git a/projects/MSU_ICERStaff.yaml b/projects/MSU_ICERStaff.yaml index 242a02f9c..a04e37693 100644 --- a/projects/MSU_ICERStaff.yaml +++ b/projects/MSU_ICERStaff.yaml @@ -7,3 +7,4 @@ PIName: Dirk Colbry Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wala2w0ka0gb' diff --git a/projects/MSU_Kerzendorf.yaml b/projects/MSU_Kerzendorf.yaml index 47a24c6cf..0682fd380 100644 --- a/projects/MSU_Kerzendorf.yaml +++ b/projects/MSU_Kerzendorf.yaml @@ -7,3 +7,4 @@ PIName: Wolfgang Kerzendorf Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wala2w0ka0gb' diff --git a/projects/MSU_RCI.yaml b/projects/MSU_RCI.yaml index 780c879aa..605b7d387 100644 --- a/projects/MSU_RCI.yaml +++ b/projects/MSU_RCI.yaml @@ -3,3 +3,4 @@ FieldOfScience: Computer Science Organization: Montana State University Department: Research Cyberinfrastructure PIName: Alex Salois +InstitutionID: 'https://osg-htc.org/iid/0budavib8vhh' diff --git a/projects/MSU_Szilagyi.yaml b/projects/MSU_Szilagyi.yaml index 38a82ad27..cf8fb5035 100644 --- a/projects/MSU_Szilagyi.yaml +++ b/projects/MSU_Szilagyi.yaml @@ -9,3 +9,4 @@ ID: '627' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0budavib8vhh' diff --git a/projects/MTU_Sha.yaml b/projects/MTU_Sha.yaml index c7a2a73e3..0f8b4571c 100644 --- a/projects/MTU_Sha.yaml +++ b/projects/MTU_Sha.yaml @@ -7,3 +7,4 @@ PIName: Qiuying Sha Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o049zuevacpx' diff --git a/projects/MTU_Zhang.yaml b/projects/MTU_Zhang.yaml index 29ce5c859..0e0a2533e 100644 --- a/projects/MTU_Zhang.yaml +++ b/projects/MTU_Zhang.yaml @@ -9,3 +9,4 @@ ID: '753' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o049zuevacpx' diff --git a/projects/MaizeAminoAcids.yaml b/projects/MaizeAminoAcids.yaml index 1c5701e72..aa9ff4727 100644 --- a/projects/MaizeAminoAcids.yaml +++ b/projects/MaizeAminoAcids.yaml @@ -11,3 +11,4 @@ PIName: Timothy M Beissinger Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/dohu2f6ba08u' diff --git a/projects/Mapping.yaml b/projects/Mapping.yaml index 5d37c48f6..19b07d5b7 100644 --- a/projects/Mapping.yaml +++ b/projects/Mapping.yaml @@ -9,3 +9,4 @@ PIName: Liang Shi Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/x5v4n3xgq7lu' diff --git a/projects/MarLab.yaml b/projects/MarLab.yaml index 2574abe97..5d7a90101 100644 --- a/projects/MarLab.yaml +++ b/projects/MarLab.yaml @@ -7,3 +7,4 @@ PIName: Jessica Mar Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/yzcm7hs9f1d0' diff --git a/projects/MedInf.yaml b/projects/MedInf.yaml index 2442ecdd0..69a9c6751 100644 --- a/projects/MedInf.yaml +++ b/projects/MedInf.yaml @@ -13,3 +13,4 @@ PIName: Alex Langerman Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/MiamiOH_Staff.yaml b/projects/MiamiOH_Staff.yaml index 9e3411355..c7a241a0b 100644 --- a/projects/MiamiOH_Staff.yaml +++ b/projects/MiamiOH_Staff.yaml @@ -7,3 +7,4 @@ PIName: Jens Mueller Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7x1mbq3fyfo4' diff --git a/projects/Michigan_ARCStaff.yaml b/projects/Michigan_ARCStaff.yaml index ba11c3bfd..5d2748565 100644 --- a/projects/Michigan_ARCStaff.yaml +++ b/projects/Michigan_ARCStaff.yaml @@ -9,3 +9,4 @@ ID: '767' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/Michigan_Alben.yaml b/projects/Michigan_Alben.yaml index dec5de1e6..726b57aa6 100644 --- a/projects/Michigan_Alben.yaml +++ b/projects/Michigan_Alben.yaml @@ -7,3 +7,4 @@ PIName: Silas Alben Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/Michigan_Bioinformatics.yaml b/projects/Michigan_Bioinformatics.yaml index 29ab708e7..b4e17cc15 100644 --- a/projects/Michigan_Bioinformatics.yaml +++ b/projects/Michigan_Bioinformatics.yaml @@ -9,3 +9,4 @@ ID: '770' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/Michigan_Brines.yaml b/projects/Michigan_Brines.yaml index 340bd563c..4c0d176f0 100644 --- a/projects/Michigan_Brines.yaml +++ b/projects/Michigan_Brines.yaml @@ -9,3 +9,4 @@ ID: '766' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/Michigan_Jadidi.yaml b/projects/Michigan_Jadidi.yaml index ba1def1d1..217fd1ef3 100644 --- a/projects/Michigan_Jadidi.yaml +++ b/projects/Michigan_Jadidi.yaml @@ -9,3 +9,4 @@ ID: '789' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/Michigan_Jahn.yaml b/projects/Michigan_Jahn.yaml index 8ec1dd210..9dacb473f 100644 --- a/projects/Michigan_Jahn.yaml +++ b/projects/Michigan_Jahn.yaml @@ -11,3 +11,4 @@ PIName: Andrew Jahn Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/Michigan_Knowles.yaml b/projects/Michigan_Knowles.yaml index 9a3da78c4..a6be2e41e 100644 --- a/projects/Michigan_Knowles.yaml +++ b/projects/Michigan_Knowles.yaml @@ -9,3 +9,4 @@ ID: '814' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/Michigan_Riles.yaml b/projects/Michigan_Riles.yaml index ace1c96b9..a074255a3 100644 --- a/projects/Michigan_Riles.yaml +++ b/projects/Michigan_Riles.yaml @@ -9,3 +9,4 @@ ID: '712' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/Michigan_Schwarz.yaml b/projects/Michigan_Schwarz.yaml index 02f5d1b72..c0c72fd67 100644 --- a/projects/Michigan_Schwarz.yaml +++ b/projects/Michigan_Schwarz.yaml @@ -11,3 +11,4 @@ PIName: Thomas Schwarz Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/Michigan_Seelbach.yaml b/projects/Michigan_Seelbach.yaml index b8f69645a..0ce2ce4b9 100644 --- a/projects/Michigan_Seelbach.yaml +++ b/projects/Michigan_Seelbach.yaml @@ -9,3 +9,4 @@ ID: '793' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/Michigan_Viswanathan.yaml b/projects/Michigan_Viswanathan.yaml index 64b96b9a6..c017177aa 100644 --- a/projects/Michigan_Viswanathan.yaml +++ b/projects/Michigan_Viswanathan.yaml @@ -4,3 +4,4 @@ Description: > FieldOfScience: Engineering Organization: University of Michigan PIName: Venkat Viswanathan +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/Michigan_Wells.yaml b/projects/Michigan_Wells.yaml index d5b2a3b03..bbb76ba00 100644 --- a/projects/Michigan_Wells.yaml +++ b/projects/Michigan_Wells.yaml @@ -7,3 +7,4 @@ PIName: James Wells Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/MicroBooNE.yaml b/projects/MicroBooNE.yaml index 61ae5d0ee..74d577e00 100644 --- a/projects/MicroBooNE.yaml +++ b/projects/MicroBooNE.yaml @@ -7,3 +7,4 @@ PIName: Joe Boyd Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/Minerva.yaml b/projects/Minerva.yaml index 715bbfd8b..0429000ad 100644 --- a/projects/Minerva.yaml +++ b/projects/Minerva.yaml @@ -7,3 +7,4 @@ PIName: Gabriel Nathan Perdue Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/Mines_BeEST.yaml b/projects/Mines_BeEST.yaml index 3c44d70b1..261de8471 100644 --- a/projects/Mines_BeEST.yaml +++ b/projects/Mines_BeEST.yaml @@ -9,3 +9,4 @@ ID: '833' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2gwyao3kqhpn' diff --git a/projects/Mines_CIARCStaff.yaml b/projects/Mines_CIARCStaff.yaml index 67039f4bb..786a3c765 100644 --- a/projects/Mines_CIARCStaff.yaml +++ b/projects/Mines_CIARCStaff.yaml @@ -9,3 +9,4 @@ ID: '739' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2gwyao3kqhpn' diff --git a/projects/Mines_GomezGualdron.yaml b/projects/Mines_GomezGualdron.yaml index 89e70b26d..783b44b0a 100644 --- a/projects/Mines_GomezGualdron.yaml +++ b/projects/Mines_GomezGualdron.yaml @@ -7,3 +7,4 @@ PIName: Diego Gomez-Gualdron Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2gwyao3kqhpn' diff --git a/projects/Mines_Leach.yaml b/projects/Mines_Leach.yaml index a0003ef2f..5246c016d 100644 --- a/projects/Mines_Leach.yaml +++ b/projects/Mines_Leach.yaml @@ -9,3 +9,4 @@ ID: '606' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2gwyao3kqhpn' diff --git a/projects/MiniWorkshopUC15.yaml b/projects/MiniWorkshopUC15.yaml index 0d89072f4..3d3f49663 100644 --- a/projects/MiniWorkshopUC15.yaml +++ b/projects/MiniWorkshopUC15.yaml @@ -8,3 +8,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/Minos.yaml b/projects/Minos.yaml index e2d8151ba..57f7f7482 100644 --- a/projects/Minos.yaml +++ b/projects/Minos.yaml @@ -7,3 +7,4 @@ PIName: Joe Boyd Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/Mizzou_OSGTeaching.yaml b/projects/Mizzou_OSGTeaching.yaml index db7d61f13..07fa65466 100644 --- a/projects/Mizzou_OSGTeaching.yaml +++ b/projects/Mizzou_OSGTeaching.yaml @@ -9,3 +9,4 @@ ID: '645' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/dohu2f6ba08u' diff --git a/projects/Mizzou_RCSS.yaml b/projects/Mizzou_RCSS.yaml index 9bdfc01ef..84b6aaee6 100644 --- a/projects/Mizzou_RCSS.yaml +++ b/projects/Mizzou_RCSS.yaml @@ -9,3 +9,4 @@ ID: '624' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/dohu2f6ba08u' diff --git a/projects/MontgomeryCollege_Dillman.yaml b/projects/MontgomeryCollege_Dillman.yaml index a0b37bf36..c161cc0f1 100644 --- a/projects/MontgomeryCollege_Dillman.yaml +++ b/projects/MontgomeryCollege_Dillman.yaml @@ -10,3 +10,4 @@ PIName: Allissa Dillman Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/hsi3jk083s4c' diff --git a/projects/Mu2e.yaml b/projects/Mu2e.yaml index 703833710..10eb8324e 100644 --- a/projects/Mu2e.yaml +++ b/projects/Mu2e.yaml @@ -7,3 +7,4 @@ PIName: Joe Boyd Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/NASA_Nasipak.yaml b/projects/NASA_Nasipak.yaml index 215dd73ae..28195d755 100644 --- a/projects/NASA_Nasipak.yaml +++ b/projects/NASA_Nasipak.yaml @@ -6,3 +6,4 @@ Description: > FieldOfScience: Astronomy Organization: National Aeronautics and Space Administration PIName: Zachary Nasipak +InstitutionID: 'https://osg-htc.org/iid/hrt3mp3j3ceb' diff --git a/projects/NCOppSchool.yaml b/projects/NCOppSchool.yaml index 9fd5a42e7..0de589127 100644 --- a/projects/NCOppSchool.yaml +++ b/projects/NCOppSchool.yaml @@ -9,3 +9,4 @@ PIName: Michael Dinerstein Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/NCSU_2023_Hall b/projects/NCSU_2023_Hall deleted file mode 100644 index 1026ca87d..000000000 --- a/projects/NCSU_2023_Hall +++ /dev/null @@ -1,9 +0,0 @@ -Description: Studies of square shaped colloidal particles with internal magnetic dipoles. Objective is to discover the phase behavior of colloids under the presence and absence of a magnetic field. Other research on colloids and soft materials under direction of PI can be found at: https://carolkhall.wordpress.ncsu.edu/research/selected-projects/ -Department: Chemical and Biomolecular Engineering -FieldOfScience: Chemical Engineering -Organization: North Carolina State University -PIName: Carol Hall - -Sponsor: - CampusGrid: - Name: OSG Connect diff --git a/projects/NCSU_Barroso.yaml b/projects/NCSU_Barroso.yaml index df74993e6..aece732f4 100644 --- a/projects/NCSU_Barroso.yaml +++ b/projects/NCSU_Barroso.yaml @@ -13,3 +13,4 @@ PIName: Fernando Luis Barroso da Silva Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mcejqenugk6j' diff --git a/projects/NCSU_Gray.yaml b/projects/NCSU_Gray.yaml index 494d79ae7..81981d614 100644 --- a/projects/NCSU_Gray.yaml +++ b/projects/NCSU_Gray.yaml @@ -7,3 +7,4 @@ Department: Center for Geospatial Analytics FieldOfScience: Geosciences Organization: North Carolina State University PIName: Josh Gray +InstitutionID: 'https://osg-htc.org/iid/mcejqenugk6j' diff --git a/projects/NCSU_Hall.yaml b/projects/NCSU_Hall.yaml index aa1ea84bb..340507c09 100644 --- a/projects/NCSU_Hall.yaml +++ b/projects/NCSU_Hall.yaml @@ -7,3 +7,4 @@ PIName: Carol Hall Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mcejqenugk6j' diff --git a/projects/NCSU_Petersen.yaml b/projects/NCSU_Petersen.yaml index 20e9d7356..15012c5fc 100644 --- a/projects/NCSU_Petersen.yaml +++ b/projects/NCSU_Petersen.yaml @@ -9,3 +9,4 @@ PIName: Andrew Petersen Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mcejqenugk6j' diff --git a/projects/NCSU_Staff.yaml b/projects/NCSU_Staff.yaml index f2b62a42c..898071093 100644 --- a/projects/NCSU_Staff.yaml +++ b/projects/NCSU_Staff.yaml @@ -5,3 +5,4 @@ Department: Research Facilitation Service FieldOfScience: Other Organization: North Carolina State University PIName: Christopher Blanton +InstitutionID: 'https://osg-htc.org/iid/mcejqenugk6j' diff --git a/projects/NDSU-CCAST.yaml b/projects/NDSU-CCAST.yaml index cb7b81aee..494a28889 100644 --- a/projects/NDSU-CCAST.yaml +++ b/projects/NDSU-CCAST.yaml @@ -9,3 +9,4 @@ PIName: Nick Dusek Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/der850qlvoxm' diff --git a/projects/NDSU_Yellavajjala.yaml b/projects/NDSU_Yellavajjala.yaml index 5dd33a2c6..fef5afdee 100644 --- a/projects/NDSU_Yellavajjala.yaml +++ b/projects/NDSU_Yellavajjala.yaml @@ -9,3 +9,4 @@ ID: '803' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/der850qlvoxm' diff --git a/projects/ND_Chen.yaml b/projects/ND_Chen.yaml index a259e87a3..57e7709b5 100644 --- a/projects/ND_Chen.yaml +++ b/projects/ND_Chen.yaml @@ -3,3 +3,4 @@ Description: Training AI models on public medical image data FieldOfScience: Engineering Organization: University of Notre Dame PIName: Danny Chen +InstitutionID: 'https://osg-htc.org/iid/mavkovkq2s0l' diff --git a/projects/ND_Colon.yaml b/projects/ND_Colon.yaml index 721785deb..88bd855b2 100644 --- a/projects/ND_Colon.yaml +++ b/projects/ND_Colon.yaml @@ -7,3 +7,4 @@ PIName: Yamil J. Colón Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mavkovkq2s0l' diff --git a/projects/ND_Lalor.yaml b/projects/ND_Lalor.yaml index e8f834c2b..c2fc66415 100644 --- a/projects/ND_Lalor.yaml +++ b/projects/ND_Lalor.yaml @@ -6,3 +6,4 @@ Description: > FieldOfScience: Computer and Information Sciences Organization: University of Notre Dame PIName: John Lalor +InstitutionID: 'https://osg-htc.org/iid/mavkovkq2s0l' diff --git a/projects/NEESTools.yaml b/projects/NEESTools.yaml index 933345cb4..5203aeab2 100644 --- a/projects/NEESTools.yaml +++ b/projects/NEESTools.yaml @@ -25,3 +25,4 @@ PIName: Frank McKenna Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/7rhak0ujmsoe' diff --git a/projects/NESCent.yaml b/projects/NESCent.yaml index bcfd4f08c..f6f22c437 100644 --- a/projects/NESCent.yaml +++ b/projects/NESCent.yaml @@ -10,3 +10,4 @@ PIName: Fabricia Nascimento Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/NGNDA.yaml b/projects/NGNDA.yaml index 549796d2f..d5bf17216 100644 --- a/projects/NGNDA.yaml +++ b/projects/NGNDA.yaml @@ -10,3 +10,4 @@ PIName: Caterina Stamoulis Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/n1kbnzl7kyiv' diff --git a/projects/NIAID_TBPortals.yaml b/projects/NIAID_TBPortals.yaml index 4a263e76f..281e1ff8a 100644 --- a/projects/NIAID_TBPortals.yaml +++ b/projects/NIAID_TBPortals.yaml @@ -8,3 +8,4 @@ PIName: Darrell Hurt Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/451cgt72wj62' diff --git a/projects/NII.yaml b/projects/NII.yaml index 7930a91c4..c1bf42b92 100644 --- a/projects/NII.yaml +++ b/projects/NII.yaml @@ -8,3 +8,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/NIST_CTCMS.yaml b/projects/NIST_CTCMS.yaml index d57327244..782c0f3fa 100644 --- a/projects/NIST_CTCMS.yaml +++ b/projects/NIST_CTCMS.yaml @@ -9,3 +9,4 @@ ID: '828' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2c1dbp9xe39x' diff --git a/projects/NJIT_Nadim.yaml b/projects/NJIT_Nadim.yaml index 9e1568b3c..0ecd60596 100644 --- a/projects/NJIT_Nadim.yaml +++ b/projects/NJIT_Nadim.yaml @@ -8,3 +8,4 @@ PIName: Farzan Nadim Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zhy58gsknnaw' diff --git a/projects/NMSU_Lawson.yaml b/projects/NMSU_Lawson.yaml index 467421f08..d2e1e8230 100644 --- a/projects/NMSU_Lawson.yaml +++ b/projects/NMSU_Lawson.yaml @@ -7,3 +7,4 @@ Department: Fish, Wildlife, and Conservation Ecology FieldOfScience: Ecological and Environmental Sciences Organization: New Mexico State University PIName: Abigail Lawson +InstitutionID: 'https://osg-htc.org/iid/zoe98r1f2ztc' diff --git a/projects/NMSU_Sievert.yaml b/projects/NMSU_Sievert.yaml index 0e62a0cd1..6183516cd 100644 --- a/projects/NMSU_Sievert.yaml +++ b/projects/NMSU_Sievert.yaml @@ -1,5 +1,6 @@ Description: Theoretical nuclear physics research. -Department: Physics +Department: Physics FieldOfScience: Physics Organization: New Mexico State University PIName: Matthew Sievert +InstitutionID: 'https://osg-htc.org/iid/zoe98r1f2ztc' diff --git a/projects/NMSU_SpinQuest.yaml b/projects/NMSU_SpinQuest.yaml index b062cfebb..a208b0bd1 100644 --- a/projects/NMSU_SpinQuest.yaml +++ b/projects/NMSU_SpinQuest.yaml @@ -9,3 +9,4 @@ ID: '820' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zoe98r1f2ztc' diff --git a/projects/NMSU_staff.yaml b/projects/NMSU_staff.yaml index 49c82c14f..c19cac154 100644 --- a/projects/NMSU_staff.yaml +++ b/projects/NMSU_staff.yaml @@ -9,3 +9,4 @@ ID: '650' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zoe98r1f2ztc' diff --git a/projects/NOAA_Bell.yaml b/projects/NOAA_Bell.yaml index 8f2f7ab49..76bb6cb7a 100644 --- a/projects/NOAA_Bell.yaml +++ b/projects/NOAA_Bell.yaml @@ -4,3 +4,4 @@ Description: >- FieldOfScience: Ocean Sciences Organization: National Oceanic and Atmospheric Administration PIName: Carrie Bell +InstitutionID: 'https://osg-htc.org/iid/dj8afwaycl7r' diff --git a/projects/NOAA_DucharmeBarth.yaml b/projects/NOAA_DucharmeBarth.yaml index ef1472b03..5eaed6bac 100644 --- a/projects/NOAA_DucharmeBarth.yaml +++ b/projects/NOAA_DucharmeBarth.yaml @@ -27,3 +27,4 @@ PIName: Nicholas Ducharme-Barth Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/dj8afwaycl7r' diff --git a/projects/NOAA_Fisch.yaml b/projects/NOAA_Fisch.yaml index 72de26f0e..672e56f12 100644 --- a/projects/NOAA_Fisch.yaml +++ b/projects/NOAA_Fisch.yaml @@ -6,3 +6,4 @@ Department: National Marine Fisheries Service FieldOfScience: Natural Resources and Conservation Organization: National Oceanic and Atmospheric Administration PIName: Nicholas Fisch +InstitutionID: 'https://osg-htc.org/iid/dj8afwaycl7r' diff --git a/projects/NOAA_Vincent.yaml b/projects/NOAA_Vincent.yaml index 82d920c6e..f94edf9bb 100644 --- a/projects/NOAA_Vincent.yaml +++ b/projects/NOAA_Vincent.yaml @@ -7,3 +7,4 @@ PIName: Matthew Vincent Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/dj8afwaycl7r' diff --git a/projects/NOIRLab_Zhang.yaml b/projects/NOIRLab_Zhang.yaml index 2df1144c8..c4a3d03d4 100644 --- a/projects/NOIRLab_Zhang.yaml +++ b/projects/NOIRLab_Zhang.yaml @@ -7,3 +7,4 @@ PIName: Yuanyuan Zhang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/yeb48hoddvuh' diff --git a/projects/NRELMatDB.yaml b/projects/NRELMatDB.yaml index 9fcf7b724..fe3e41f01 100644 --- a/projects/NRELMatDB.yaml +++ b/projects/NRELMatDB.yaml @@ -8,3 +8,4 @@ PIName: Peter Graf Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/5eamxxwzykgj' diff --git a/projects/NSDF.yaml b/projects/NSDF.yaml index 2e2cc07fb..d723f03bf 100644 --- a/projects/NSDF.yaml +++ b/projects/NSDF.yaml @@ -7,3 +7,4 @@ PIName: Frank Wuerthwein Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/NSHE_SCS.yaml b/projects/NSHE_SCS.yaml index 6a21e3c85..b5afcc662 100644 --- a/projects/NSHE_SCS.yaml +++ b/projects/NSHE_SCS.yaml @@ -7,3 +7,4 @@ PIName: Zachary Newell Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/qg1h77zyr2wl' diff --git a/projects/NSLS2ID.yaml b/projects/NSLS2ID.yaml index a6bf1e16c..2e75a28d6 100644 --- a/projects/NSLS2ID.yaml +++ b/projects/NSLS2ID.yaml @@ -10,3 +10,4 @@ PIName: Dean Andrew Hidas Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/NSNM.yaml b/projects/NSNM.yaml index 1b8af716e..88b0806e3 100644 --- a/projects/NSNM.yaml +++ b/projects/NSNM.yaml @@ -8,3 +8,4 @@ PIName: Vadim Apalkov Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ybl3snr9pbs1' diff --git a/projects/NWChem.yaml b/projects/NWChem.yaml index 5a5be50ff..2adaf5b3a 100644 --- a/projects/NWChem.yaml +++ b/projects/NWChem.yaml @@ -14,3 +14,4 @@ PIName: Manish Parashar Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/qrem5k97ikiv' diff --git a/projects/NYU_Fund.yaml b/projects/NYU_Fund.yaml index 570a1f0ff..52e28b765 100644 --- a/projects/NYU_Fund.yaml +++ b/projects/NYU_Fund.yaml @@ -9,3 +9,4 @@ ID: '778' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/hjcl6b3vh3ox' diff --git a/projects/NapusGenome.yaml b/projects/NapusGenome.yaml index 184393b2c..3e355f454 100644 --- a/projects/NapusGenome.yaml +++ b/projects/NapusGenome.yaml @@ -8,3 +8,4 @@ PIName: Joel Bader Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3fml5tx2uhe0' diff --git a/projects/NeoflAnnot.yaml b/projects/NeoflAnnot.yaml index 42d519dcb..fac4c6d9a 100644 --- a/projects/NeoflAnnot.yaml +++ b/projects/NeoflAnnot.yaml @@ -8,3 +8,4 @@ PIName: Petra Lenz Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/34mcskejwysy' diff --git a/projects/NeurOscillation.yaml b/projects/NeurOscillation.yaml index 9165e8ed8..7f5f0d83d 100644 --- a/projects/NeurOscillation.yaml +++ b/projects/NeurOscillation.yaml @@ -16,3 +16,4 @@ PIName: Bradley Voytek Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/NeuroscienceGateway.yaml b/projects/NeuroscienceGateway.yaml index 295a9b427..39b362b45 100644 --- a/projects/NeuroscienceGateway.yaml +++ b/projects/NeuroscienceGateway.yaml @@ -9,3 +9,4 @@ ID: '643' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/NichollsState_Whitaker.yaml b/projects/NichollsState_Whitaker.yaml index d9304dd7d..d930afd9d 100644 --- a/projects/NichollsState_Whitaker.yaml +++ b/projects/NichollsState_Whitaker.yaml @@ -8,3 +8,4 @@ PIName: Justine Whitaker Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3ksr8posuc81' diff --git a/projects/Nipyperegtest.yaml b/projects/Nipyperegtest.yaml index f59694458..3dcb26211 100644 --- a/projects/Nipyperegtest.yaml +++ b/projects/Nipyperegtest.yaml @@ -7,3 +7,4 @@ PIName: Satrajit Ghosh Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/Northeastern_RC.yaml b/projects/Northeastern_RC.yaml index 2ccd2a14e..b4bc18cfd 100644 --- a/projects/Northeastern_RC.yaml +++ b/projects/Northeastern_RC.yaml @@ -9,3 +9,4 @@ ID: '723' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/454t2lfhcfpp' diff --git a/projects/NorthwesternMed_Yadav.yaml b/projects/NorthwesternMed_Yadav.yaml index fc5884ca3..cc0ec7a73 100644 --- a/projects/NorthwesternMed_Yadav.yaml +++ b/projects/NorthwesternMed_Yadav.yaml @@ -3,4 +3,4 @@ Description: 'Monte Carlo simulations of the Boltzmann radiation transport equat FieldOfScience: Physics Organization: Northwestern Medicine PIName: Poonam Yadav - +InstitutionID: 'https://osg-htc.org/iid/awdbxa8mc2yw' diff --git a/projects/Nova.yaml b/projects/Nova.yaml index 46ee6f5d7..0d8584bb3 100644 --- a/projects/Nova.yaml +++ b/projects/Nova.yaml @@ -7,3 +7,4 @@ PIName: Joe Boyd Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/OHSU_Katamreddy.yaml b/projects/OHSU_Katamreddy.yaml index 263ba5e80..3ed75896a 100644 --- a/projects/OHSU_Katamreddy.yaml +++ b/projects/OHSU_Katamreddy.yaml @@ -12,3 +12,4 @@ PIName: Adarsh Katamreddy Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/90btatj2meqd' diff --git a/projects/ORISSWarp.yaml b/projects/ORISSWarp.yaml index 9ad61f1f8..41b129a6c 100644 --- a/projects/ORISSWarp.yaml +++ b/projects/ORISSWarp.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/e4p2um2dwe4j' diff --git a/projects/OSG-CSC00100.yaml b/projects/OSG-CSC00100.yaml index d4da7f5ce..28a5595d1 100644 --- a/projects/OSG-CSC00100.yaml +++ b/projects/OSG-CSC00100.yaml @@ -13,3 +13,4 @@ PIName: George Rudolph Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/jo5m3av5h4i9' diff --git a/projects/OSG-Staff.yaml b/projects/OSG-Staff.yaml index 8f2f1e5c8..5773d1bde 100644 --- a/projects/OSG-Staff.yaml +++ b/projects/OSG-Staff.yaml @@ -17,3 +17,4 @@ ResourceAllocations: ExecuteResourceGroups: - GroupName: TACC-Stampede2 LocalAllocationID: "TG-DDM160003" +InstitutionID: 'https://osg-htc.org/iid/8hgx4a4ptpt9' diff --git a/projects/OSGOpsTrain.yaml b/projects/OSGOpsTrain.yaml index ac131d3d6..e57b4e269 100644 --- a/projects/OSGOpsTrain.yaml +++ b/projects/OSGOpsTrain.yaml @@ -7,3 +7,4 @@ PIName: Rob Quick Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8hgx4a4ptpt9' diff --git a/projects/OSGUserSchool2022.yaml b/projects/OSGUserSchool2022.yaml index 046579f24..5e9a5ac57 100644 --- a/projects/OSGUserSchool2022.yaml +++ b/projects/OSGUserSchool2022.yaml @@ -7,3 +7,4 @@ PIName: Tim Cartwright Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/OSGUserTrainingPilot.yaml b/projects/OSGUserTrainingPilot.yaml index cac3081b5..a30250adc 100644 --- a/projects/OSGUserTrainingPilot.yaml +++ b/projects/OSGUserTrainingPilot.yaml @@ -9,3 +9,4 @@ ID: '806' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8hgx4a4ptpt9' diff --git a/projects/OSG_SoftwareInventory.yaml b/projects/OSG_SoftwareInventory.yaml index af35f9f9d..74c48652c 100644 --- a/projects/OSG_SoftwareInventory.yaml +++ b/projects/OSG_SoftwareInventory.yaml @@ -6,3 +6,4 @@ PIName: Josh Drake Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/8hgx4a4ptpt9' diff --git a/projects/OSURHIT.yaml b/projects/OSURHIT.yaml index 35ac01d49..ee1045eda 100644 --- a/projects/OSURHIT.yaml +++ b/projects/OSURHIT.yaml @@ -9,3 +9,4 @@ PIName: Ulrich Heinz Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/984ms2rzh7do' diff --git a/projects/OSU_Weinberg.yaml b/projects/OSU_Weinberg.yaml index e3f70fa96..bddf31e87 100644 --- a/projects/OSU_Weinberg.yaml +++ b/projects/OSU_Weinberg.yaml @@ -9,3 +9,4 @@ ID: '832' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/984ms2rzh7do' diff --git a/projects/OTPCand0vbb.yaml b/projects/OTPCand0vbb.yaml index c3998ab26..ab6cffefe 100644 --- a/projects/OTPCand0vbb.yaml +++ b/projects/OTPCand0vbb.yaml @@ -15,3 +15,4 @@ PIName: Henry Frisch Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/Orbiter.yaml b/projects/Orbiter.yaml index 488e0b4a9..5bb9b9a92 100644 --- a/projects/Orbiter.yaml +++ b/projects/Orbiter.yaml @@ -9,3 +9,4 @@ PIName: Anton Betten Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2aj5pa9etoc7' diff --git a/projects/OregonState_Simon.yaml b/projects/OregonState_Simon.yaml index 733ab1806..8a4ea6849 100644 --- a/projects/OregonState_Simon.yaml +++ b/projects/OregonState_Simon.yaml @@ -7,3 +7,4 @@ PIName: Cory Simon Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/h0s7lk6vj9dn' diff --git a/projects/P0-LBNE.yaml b/projects/P0-LBNE.yaml index 79a800a8f..12423169a 100644 --- a/projects/P0-LBNE.yaml +++ b/projects/P0-LBNE.yaml @@ -13,3 +13,4 @@ PIName: Maxim Potekhin Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/PBOSD.yaml b/projects/PBOSD.yaml index bf30f136f..8f73efbaa 100644 --- a/projects/PBOSD.yaml +++ b/projects/PBOSD.yaml @@ -15,3 +15,4 @@ PIName: Yong Li Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/PCFOSGUCSD.yaml b/projects/PCFOSGUCSD.yaml index ee703a1e0..1cd5cbaf3 100644 --- a/projects/PCFOSGUCSD.yaml +++ b/projects/PCFOSGUCSD.yaml @@ -8,3 +8,4 @@ PIName: Frank Wuerthwein Sponsor: CampusGrid: Name: UCSD +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/PNGtemplate.yaml b/projects/PNGtemplate.yaml index 0ca3ff14d..7cdca432d 100644 --- a/projects/PNGtemplate.yaml +++ b/projects/PNGtemplate.yaml @@ -12,3 +12,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/oe09ae0p2pmj' diff --git a/projects/POLARBEAR.yaml b/projects/POLARBEAR.yaml index 99c446d98..137dfabb2 100644 --- a/projects/POLARBEAR.yaml +++ b/projects/POLARBEAR.yaml @@ -15,3 +15,4 @@ PIName: Brian Keating Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/PRP.yaml b/projects/PRP.yaml index 9884f7be3..dfb79b567 100644 --- a/projects/PRP.yaml +++ b/projects/PRP.yaml @@ -14,3 +14,4 @@ ID: '786' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/PRP_Defanti.yaml b/projects/PRP_Defanti.yaml index 2430f71b0..ffa3407e0 100644 --- a/projects/PRP_Defanti.yaml +++ b/projects/PRP_Defanti.yaml @@ -1,10 +1,11 @@ Department: Pacific Research Platform Description: Machine Learning HTCondor submission from PRP Nautilus FieldOfScience: Machine Learning/AI -ID: '754' +ID: '754' Name: PRP Organization: Pacific Research Platform PIName: Tom DeFanti Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: "https://osg-htc.org/iid/06wup3aye2t7" diff --git a/projects/PRTH.yaml b/projects/PRTH.yaml index 5af4920d0..caeea61e3 100644 --- a/projects/PRTH.yaml +++ b/projects/PRTH.yaml @@ -9,3 +9,4 @@ PIName: Endre Takacs Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ricyf18amt49' diff --git a/projects/PSFmodeling.yaml b/projects/PSFmodeling.yaml index 2979343bd..0044cae62 100644 --- a/projects/PSFmodeling.yaml +++ b/projects/PSFmodeling.yaml @@ -9,3 +9,4 @@ PIName: Paul Vaska Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/qqd2s2b6m7eh' diff --git a/projects/PSI_Kaib.yaml b/projects/PSI_Kaib.yaml index 1883156d9..b22779aa6 100644 --- a/projects/PSI_Kaib.yaml +++ b/projects/PSI_Kaib.yaml @@ -6,3 +6,4 @@ Department: Planetary Science Institute FieldOfScience: Astronomy and Astrophysics Organization: Planetary Science Institute PIName: Nathan Kaib +InstitutionID: 'https://osg-htc.org/iid/rdbhaweq480i' diff --git a/projects/PSU_Anandakrishnan.yaml b/projects/PSU_Anandakrishnan.yaml index 47032fa14..94d94d83a 100644 --- a/projects/PSU_Anandakrishnan.yaml +++ b/projects/PSU_Anandakrishnan.yaml @@ -10,3 +10,4 @@ PIName: Sridhar Anandakrishnan Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f1tlj6c19ppg' diff --git a/projects/PSU_Chen.yaml b/projects/PSU_Chen.yaml index 905d171aa..1007e7d97 100644 --- a/projects/PSU_Chen.yaml +++ b/projects/PSU_Chen.yaml @@ -9,3 +9,4 @@ ID: '772' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f1tlj6c19ppg' diff --git a/projects/PSU_Kennea.yaml b/projects/PSU_Kennea.yaml index 529b0671a..ee16cb06e 100644 --- a/projects/PSU_Kennea.yaml +++ b/projects/PSU_Kennea.yaml @@ -7,3 +7,4 @@ PIName: Jamie Kennea Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f1tlj6c19ppg' diff --git a/projects/PSU_Rechtsman.yaml b/projects/PSU_Rechtsman.yaml index fb6f73a7f..03cdf6083 100644 --- a/projects/PSU_Rechtsman.yaml +++ b/projects/PSU_Rechtsman.yaml @@ -7,3 +7,4 @@ PIName: Mikael Rechtman Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f1tlj6c19ppg' diff --git a/projects/PSU_Staff.yaml b/projects/PSU_Staff.yaml index 45e205baf..e62903487 100644 --- a/projects/PSU_Staff.yaml +++ b/projects/PSU_Staff.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f1tlj6c19ppg' diff --git a/projects/PSU_Yamamoto.yaml b/projects/PSU_Yamamoto.yaml index a6d83b0c9..42f122512 100644 --- a/projects/PSU_Yamamoto.yaml +++ b/projects/PSU_Yamamoto.yaml @@ -13,3 +13,4 @@ PIName: Namiko Yamamoto Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f1tlj6c19ppg' diff --git a/projects/PTMC.yaml b/projects/PTMC.yaml index 46dc63526..955e234c4 100644 --- a/projects/PTMC.yaml +++ b/projects/PTMC.yaml @@ -9,3 +9,4 @@ PIName: Derek Dolney Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nv2rjrft01gg' diff --git a/projects/PainDrugs.yaml b/projects/PainDrugs.yaml index 5603d2631..27d97325d 100644 --- a/projects/PainDrugs.yaml +++ b/projects/PainDrugs.yaml @@ -7,3 +7,4 @@ PIName: Pei Tang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2ayx10b74xua' diff --git a/projects/PanEn.yaml b/projects/PanEn.yaml index e9767debc..c129ee3f3 100644 --- a/projects/PanEn.yaml +++ b/projects/PanEn.yaml @@ -9,3 +9,4 @@ ID: '581' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f1tlj6c19ppg' diff --git a/projects/Paniceae-trans.yaml b/projects/Paniceae-trans.yaml index 7699f8c62..371cece4d 100644 --- a/projects/Paniceae-trans.yaml +++ b/projects/Paniceae-trans.yaml @@ -8,3 +8,4 @@ PIName: Jacob Washburn Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/dohu2f6ba08u' diff --git a/projects/PathSpaceHMC.yaml b/projects/PathSpaceHMC.yaml index 1a8d1c273..667bfd0ef 100644 --- a/projects/PathSpaceHMC.yaml +++ b/projects/PathSpaceHMC.yaml @@ -22,3 +22,4 @@ PIName: Frank Pinski Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/52f5piuly2gg' diff --git a/projects/PegasusTraining.yaml b/projects/PegasusTraining.yaml index 1355ff620..685c4f0d1 100644 --- a/projects/PegasusTraining.yaml +++ b/projects/PegasusTraining.yaml @@ -7,3 +7,4 @@ PIName: Mats Rynge Sponsor: CampusGrid: Name: ISI +InstitutionID: 'https://osg-htc.org/iid/6edduwj65dlr' diff --git a/projects/PennState_Hanna.yaml b/projects/PennState_Hanna.yaml index 28b380748..92fe46c25 100644 --- a/projects/PennState_Hanna.yaml +++ b/projects/PennState_Hanna.yaml @@ -9,3 +9,4 @@ ID: '835' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f1tlj6c19ppg' diff --git a/projects/PercARsolar.yaml b/projects/PercARsolar.yaml index af7e74bc2..2c3d124f4 100644 --- a/projects/PercARsolar.yaml +++ b/projects/PercARsolar.yaml @@ -9,3 +9,4 @@ ID: '642' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mgbbuoiqiwpe' diff --git a/projects/Perchlorate.yaml b/projects/Perchlorate.yaml index 4002c9c45..3ac763020 100644 --- a/projects/Perchlorate.yaml +++ b/projects/Perchlorate.yaml @@ -8,3 +8,4 @@ PIName: Justin M Hutchison Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/y691qclum4cv' diff --git a/projects/Pheno.yaml b/projects/Pheno.yaml index cbe95cac2..e97d342d7 100644 --- a/projects/Pheno.yaml +++ b/projects/Pheno.yaml @@ -20,3 +20,4 @@ PIName: Stefan Hoeche Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/gsbt8law2xf0' diff --git a/projects/Phylo.yaml b/projects/Phylo.yaml index 1a142d69d..9088b0bdb 100644 --- a/projects/Phylo.yaml +++ b/projects/Phylo.yaml @@ -10,3 +10,4 @@ PIName: Siavash Mirarab Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/Phylogenomics.yaml b/projects/Phylogenomics.yaml index 716d415ad..943f8f8fb 100644 --- a/projects/Phylogenomics.yaml +++ b/projects/Phylogenomics.yaml @@ -10,3 +10,4 @@ PIName: Nathan G Swenson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/h5syhdikri9a' diff --git a/projects/Pitt_Aizenstein.yaml b/projects/Pitt_Aizenstein.yaml index 4a60cf85a..592577c80 100644 --- a/projects/Pitt_Aizenstein.yaml +++ b/projects/Pitt_Aizenstein.yaml @@ -7,3 +7,4 @@ PIName: Howard Aizenstein Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2ayx10b74xua' diff --git a/projects/Pitt_Koes.yaml b/projects/Pitt_Koes.yaml index 8ddc4fa5f..6b62d9b27 100644 --- a/projects/Pitt_Koes.yaml +++ b/projects/Pitt_Koes.yaml @@ -9,3 +9,4 @@ ID: '626' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2ayx10b74xua' diff --git a/projects/PixleyLab.yaml b/projects/PixleyLab.yaml index 26e3c1a55..d40fb302a 100644 --- a/projects/PixleyLab.yaml +++ b/projects/PixleyLab.yaml @@ -7,3 +7,4 @@ PIName: Jedediah Pixley Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/qrem5k97ikiv' diff --git a/projects/PlantBio.yaml b/projects/PlantBio.yaml index 9896e2467..e9776f3ed 100644 --- a/projects/PlantBio.yaml +++ b/projects/PlantBio.yaml @@ -8,3 +8,4 @@ PIName: Joy Bergleson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/PopDy.yaml b/projects/PopDy.yaml index fb4d8b612..b42643520 100644 --- a/projects/PopDy.yaml +++ b/projects/PopDy.yaml @@ -8,3 +8,4 @@ PIName: Shripad Tuljapurkar Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/PorousMaterials.yaml b/projects/PorousMaterials.yaml index d2726a42b..b55ea1a56 100644 --- a/projects/PorousMaterials.yaml +++ b/projects/PorousMaterials.yaml @@ -13,3 +13,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/h0s7lk6vj9dn' diff --git a/projects/PortlandState_Feng.yaml b/projects/PortlandState_Feng.yaml index 6e2fa5051..e72443c77 100644 --- a/projects/PortlandState_Feng.yaml +++ b/projects/PortlandState_Feng.yaml @@ -9,3 +9,4 @@ ID: '666' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/26b8vvvqixd6' diff --git a/projects/PortlandState_OIT.yaml b/projects/PortlandState_OIT.yaml index 25efec48f..d6221f1d3 100644 --- a/projects/PortlandState_OIT.yaml +++ b/projects/PortlandState_OIT.yaml @@ -7,3 +7,4 @@ PIName: Gary Sandine Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/26b8vvvqixd6' diff --git a/projects/PreBioEvo.yaml b/projects/PreBioEvo.yaml index 9aecb4d45..a9707640f 100644 --- a/projects/PreBioEvo.yaml +++ b/projects/PreBioEvo.yaml @@ -27,3 +27,4 @@ PIName: J. Woods Halley Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3chofmlz7p5r' diff --git a/projects/Princeton_Jamieson.yaml b/projects/Princeton_Jamieson.yaml index 686c96bf6..0513ddeec 100644 --- a/projects/Princeton_Jamieson.yaml +++ b/projects/Princeton_Jamieson.yaml @@ -5,3 +5,4 @@ Department: Princeton Advanced Wireless Systems Lab FieldOfScience: Electrical, Electronic, and Communications Organization: Princeton University PIName: Kyle Jamieson +InstitutionID: 'https://osg-htc.org/iid/ao845i5pul3m' diff --git a/projects/ProbTracx.yaml b/projects/ProbTracx.yaml index abe643145..ffb7f6dfd 100644 --- a/projects/ProbTracx.yaml +++ b/projects/ProbTracx.yaml @@ -13,3 +13,4 @@ PIName: Dr. Bruce P. Hermann Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/ProtEvol.yaml b/projects/ProtEvol.yaml index 34714b145..31bdc1ce4 100644 --- a/projects/ProtEvol.yaml +++ b/projects/ProtEvol.yaml @@ -12,3 +12,4 @@ PIName: Premal Shah Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nv2rjrft01gg' diff --git a/projects/ProtFolding.yaml b/projects/ProtFolding.yaml index d0b87782a..e8ff8503a 100644 --- a/projects/ProtFolding.yaml +++ b/projects/ProtFolding.yaml @@ -9,3 +9,4 @@ PIName: Jinbo Xu Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/hgmyhtpshdy9' diff --git a/projects/Proteomics.yaml b/projects/Proteomics.yaml index 0d987eebc..409cb2894 100644 --- a/projects/Proteomics.yaml +++ b/projects/Proteomics.yaml @@ -10,3 +10,4 @@ PIName: Sam Volchenboum Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/Purdue_Aggarwal.yaml b/projects/Purdue_Aggarwal.yaml index f8077c0e3..35e009246 100644 --- a/projects/Purdue_Aggarwal.yaml +++ b/projects/Purdue_Aggarwal.yaml @@ -9,3 +9,4 @@ ID: '844' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/oe09ae0p2pmj' diff --git a/projects/QCArchive_Smith.yaml b/projects/QCArchive_Smith.yaml index 569a867fe..d3a3b65b1 100644 --- a/projects/QCArchive_Smith.yaml +++ b/projects/QCArchive_Smith.yaml @@ -9,3 +9,4 @@ ID: '619' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/6oylis0t2x6u' diff --git a/projects/QEvolBiol.yaml b/projects/QEvolBiol.yaml index 76bee9b8a..d16588970 100644 --- a/projects/QEvolBiol.yaml +++ b/projects/QEvolBiol.yaml @@ -9,3 +9,4 @@ PIName: Jeremy Van Cleve Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/532yhevnxlxc' diff --git a/projects/QGIS.yaml b/projects/QGIS.yaml index 1699c2064..75d91fd43 100644 --- a/projects/QGIS.yaml +++ b/projects/QGIS.yaml @@ -8,3 +8,4 @@ PIName: Patricia Carbajales-Dale Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ricyf18amt49' diff --git a/projects/QMC.yaml b/projects/QMC.yaml index 9995dc419..3d6ae7120 100644 --- a/projects/QMC.yaml +++ b/projects/QMC.yaml @@ -8,3 +8,4 @@ PIName: Andrew Powell Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/a5fyyhl121i9' diff --git a/projects/QuantEvol.yaml b/projects/QuantEvol.yaml index b69ea58e8..01e48f0d6 100644 --- a/projects/QuantEvol.yaml +++ b/projects/QuantEvol.yaml @@ -7,3 +7,4 @@ PIName: Shripad Tuljapurkar Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/RADICAL.yaml b/projects/RADICAL.yaml index dfa19757e..8353d2aa0 100644 --- a/projects/RADICAL.yaml +++ b/projects/RADICAL.yaml @@ -10,3 +10,4 @@ PIName: Shantenu Jha Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/qrem5k97ikiv' diff --git a/projects/RDCEP.yaml b/projects/RDCEP.yaml index d3ef2a15e..7d8d83e8d 100644 --- a/projects/RDCEP.yaml +++ b/projects/RDCEP.yaml @@ -36,3 +36,4 @@ PIName: Ian Foster Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/REDTOP.yaml b/projects/REDTOP.yaml index 32581ed45..161f0f475 100644 --- a/projects/REDTOP.yaml +++ b/projects/REDTOP.yaml @@ -8,3 +8,4 @@ PIName: Corrado Gatto Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/RIT.yaml b/projects/RIT.yaml index 382be1f9e..f72f84314 100644 --- a/projects/RIT.yaml +++ b/projects/RIT.yaml @@ -12,3 +12,4 @@ PIName: "Stanis\u0142aw P. Radziszowski" Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/khe0lt7x352p' diff --git a/projects/RIT_KGCEval.yaml b/projects/RIT_KGCEval.yaml index 9b2227c0c..3faf18c54 100644 --- a/projects/RIT_KGCEval.yaml +++ b/projects/RIT_KGCEval.yaml @@ -9,3 +9,4 @@ ID: '735' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/khe0lt7x352p' diff --git a/projects/RIT_ResearchComputing.yaml b/projects/RIT_ResearchComputing.yaml index d53010309..5f787c4ba 100644 --- a/projects/RIT_ResearchComputing.yaml +++ b/projects/RIT_ResearchComputing.yaml @@ -9,3 +9,4 @@ ID: '740' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/khe0lt7x352p' diff --git a/projects/RIT_Tu.yaml b/projects/RIT_Tu.yaml index ba5338f52..7911a4a66 100644 --- a/projects/RIT_Tu.yaml +++ b/projects/RIT_Tu.yaml @@ -3,3 +3,4 @@ Department: Mechanical Engineering FieldOfScience: Mechanical Engineering Organization: Rochester Institute of Technology PIName: Howard Tu +InstitutionID: 'https://osg-htc.org/iid/khe0lt7x352p' diff --git a/projects/RPI_Brown.yaml b/projects/RPI_Brown.yaml index a2b4eb757..274cb094c 100644 --- a/projects/RPI_Brown.yaml +++ b/projects/RPI_Brown.yaml @@ -9,3 +9,4 @@ ID: '604' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/z9jynyyvt051' diff --git a/projects/Radlife.yaml b/projects/Radlife.yaml index f57e9cb0e..bba4d0fb1 100644 --- a/projects/Radlife.yaml +++ b/projects/Radlife.yaml @@ -8,3 +8,4 @@ PIName: Xiaochun He Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ybl3snr9pbs1' diff --git a/projects/ReABuncherRing.yaml b/projects/ReABuncherRing.yaml index e7ce23b83..aec6cae1b 100644 --- a/projects/ReABuncherRing.yaml +++ b/projects/ReABuncherRing.yaml @@ -7,3 +7,4 @@ PIName: Phil Duxbury Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wala2w0ka0gb' diff --git a/projects/RicePhenomics.yaml b/projects/RicePhenomics.yaml index 46e5ce33c..28d4f5c45 100644 --- a/projects/RicePhenomics.yaml +++ b/projects/RicePhenomics.yaml @@ -7,3 +7,4 @@ PIName: Harkamal Walia Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/Rice_AjoFranklin.yaml b/projects/Rice_AjoFranklin.yaml index 2fa44a66b..c25817791 100644 --- a/projects/Rice_AjoFranklin.yaml +++ b/projects/Rice_AjoFranklin.yaml @@ -7,3 +7,4 @@ PIName: Jonathan Ajo-Franklin Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mqyva49x2em4' diff --git a/projects/Rice_Fox.yaml b/projects/Rice_Fox.yaml index 66628f8c4..154a86795 100644 --- a/projects/Rice_Fox.yaml +++ b/projects/Rice_Fox.yaml @@ -9,3 +9,4 @@ ID: '846' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mqyva49x2em4' diff --git a/projects/Rice_Li.yaml b/projects/Rice_Li.yaml index d1cd89120..3e1d5e160 100644 --- a/projects/Rice_Li.yaml +++ b/projects/Rice_Li.yaml @@ -5,3 +5,4 @@ Description: We do research on experimental nuclear and particle physics at the FieldOfScience: Physics Organization: Rice University PIName: Wei Li +InstitutionID: 'https://osg-htc.org/iid/mqyva49x2em4' diff --git a/projects/Rice_Mulligan.yaml b/projects/Rice_Mulligan.yaml index bdbcdf15d..cb64c82cd 100644 --- a/projects/Rice_Mulligan.yaml +++ b/projects/Rice_Mulligan.yaml @@ -9,3 +9,4 @@ FieldOfScience: Mathematics and Statistics Organization: Rice University PIName: John Connor Mulligan +InstitutionID: 'https://osg-htc.org/iid/mqyva49x2em4' diff --git a/projects/Rice_Ogilvie.yaml b/projects/Rice_Ogilvie.yaml index 21561ffd0..0a671eb25 100644 --- a/projects/Rice_Ogilvie.yaml +++ b/projects/Rice_Ogilvie.yaml @@ -16,3 +16,4 @@ ID: '805' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mqyva49x2em4' diff --git a/projects/Rochester_Askari.yaml b/projects/Rochester_Askari.yaml index 27b837b6f..f50fb1530 100644 --- a/projects/Rochester_Askari.yaml +++ b/projects/Rochester_Askari.yaml @@ -8,3 +8,4 @@ PIName: Hesam Askari Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v3s5cj6tgrvz' diff --git a/projects/Rochester_Franchini.yaml b/projects/Rochester_Franchini.yaml index f8af697d1..971700c26 100644 --- a/projects/Rochester_Franchini.yaml +++ b/projects/Rochester_Franchini.yaml @@ -6,3 +6,4 @@ Department: University of Rochester Medical Centre FieldOfScience: Biological and Biomedical Sciences Organization: University of Rochester PIName: Anthony Franchini +InstitutionID: 'https://osg-htc.org/iid/v3s5cj6tgrvz' diff --git a/projects/Rochester_Liu.yaml b/projects/Rochester_Liu.yaml index 777cb3d4b..7c63246f4 100644 --- a/projects/Rochester_Liu.yaml +++ b/projects/Rochester_Liu.yaml @@ -9,3 +9,4 @@ PIName: Baowei Liu Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v3s5cj6tgrvz' diff --git a/projects/Rochester_Mongelli.yaml b/projects/Rochester_Mongelli.yaml index a3202bef3..88c955852 100644 --- a/projects/Rochester_Mongelli.yaml +++ b/projects/Rochester_Mongelli.yaml @@ -13,3 +13,4 @@ PIName: Guy Mongelli Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v3s5cj6tgrvz' diff --git a/projects/Rowan_Nguyen.yaml b/projects/Rowan_Nguyen.yaml index bb5d1bb29..8fa5e0587 100644 --- a/projects/Rowan_Nguyen.yaml +++ b/projects/Rowan_Nguyen.yaml @@ -9,3 +9,4 @@ ID: '688' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/oya34s2ysser' diff --git a/projects/Rowan_NguyenT.yaml b/projects/Rowan_NguyenT.yaml index 2be9b50ea..0b685a9e8 100644 --- a/projects/Rowan_NguyenT.yaml +++ b/projects/Rowan_NguyenT.yaml @@ -9,3 +9,4 @@ ID: '697' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/oya34s2ysser' diff --git a/projects/Rowan_Rasool.yaml b/projects/Rowan_Rasool.yaml index ef41fdb25..c8f28046d 100644 --- a/projects/Rowan_Rasool.yaml +++ b/projects/Rowan_Rasool.yaml @@ -9,3 +9,4 @@ ID: '790' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/oya34s2ysser' diff --git a/projects/RutgersOARC.yaml b/projects/RutgersOARC.yaml index 0af15a433..12cebb0bc 100644 --- a/projects/RutgersOARC.yaml +++ b/projects/RutgersOARC.yaml @@ -7,3 +7,4 @@ PIName: Bala Desinghu Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/qrem5k97ikiv' diff --git a/projects/SBGrid.yaml b/projects/SBGrid.yaml index 6cf2c19db..825641d1a 100644 --- a/projects/SBGrid.yaml +++ b/projects/SBGrid.yaml @@ -7,3 +7,4 @@ PIName: Piotr Sliz Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/n1kbnzl7kyiv' diff --git a/projects/SBND.yaml b/projects/SBND.yaml index bf633a84c..00717c977 100644 --- a/projects/SBND.yaml +++ b/projects/SBND.yaml @@ -7,3 +7,4 @@ PIName: Joe Boyd Sponsor: VirtualOrganization: Name: SBND +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/SBU_Jia.yaml b/projects/SBU_Jia.yaml index 704575d2d..4e0c8cff3 100644 --- a/projects/SBU_Jia.yaml +++ b/projects/SBU_Jia.yaml @@ -6,3 +6,4 @@ Department: Physics FieldOfScience: Physics Organization: State University of New York at Stony Brook PIName: Jiangyong Jia +InstitutionID: 'https://osg-htc.org/iid/qqd2s2b6m7eh' diff --git a/projects/SCEPCAL_Tully.yaml b/projects/SCEPCAL_Tully.yaml index fb2ed068a..a178a9696 100644 --- a/projects/SCEPCAL_Tully.yaml +++ b/projects/SCEPCAL_Tully.yaml @@ -9,3 +9,4 @@ ID: '618' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ao845i5pul3m' diff --git a/projects/SC_Gothe.yaml b/projects/SC_Gothe.yaml index c8fe31849..c51c1ef54 100644 --- a/projects/SC_Gothe.yaml +++ b/projects/SC_Gothe.yaml @@ -14,3 +14,4 @@ ID: '779' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/p58u55ae2ahu' diff --git a/projects/SDCC.yaml b/projects/SDCC.yaml index 5440de031..dbbc9a118 100644 --- a/projects/SDCC.yaml +++ b/projects/SDCC.yaml @@ -8,3 +8,4 @@ Sponsor: VirtualOrganization: ID: '114' Name: BNL +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/SDEalgorithms.yaml b/projects/SDEalgorithms.yaml index abfb2e62f..1f12dcbdd 100644 --- a/projects/SDEalgorithms.yaml +++ b/projects/SDEalgorithms.yaml @@ -12,3 +12,4 @@ PIName: Harish S. Bhat Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/x5v4n3xgq7lu' diff --git a/projects/SDSC-Staff.yaml b/projects/SDSC-Staff.yaml index 42feefa0c..ab70db64a 100644 --- a/projects/SDSC-Staff.yaml +++ b/projects/SDSC-Staff.yaml @@ -7,3 +7,4 @@ PIName: Frank Wuerthwein Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/SDSU_Edwards.yaml b/projects/SDSU_Edwards.yaml index 043e7c0da..73bd827a9 100644 --- a/projects/SDSU_Edwards.yaml +++ b/projects/SDSU_Edwards.yaml @@ -9,3 +9,4 @@ ID: '600' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/lly8f2d4uk76' diff --git a/projects/SDSU_Huangfu.yaml b/projects/SDSU_Huangfu.yaml index e966e6996..3667e6473 100644 --- a/projects/SDSU_Huangfu.yaml +++ b/projects/SDSU_Huangfu.yaml @@ -9,3 +9,4 @@ ID: '813' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/lly8f2d4uk76' diff --git a/projects/SDState_RCi.yaml b/projects/SDState_RCi.yaml index 32357fd53..a0c8b19db 100644 --- a/projects/SDState_RCi.yaml +++ b/projects/SDState_RCi.yaml @@ -8,3 +8,4 @@ PIName: Chad Julius Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/oqz71b6b44za' diff --git a/projects/SFCphases.yaml b/projects/SFCphases.yaml index f17bc788b..be0956165 100644 --- a/projects/SFCphases.yaml +++ b/projects/SFCphases.yaml @@ -17,3 +17,4 @@ PIName: Paul Siders Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4h44weyae1r3' diff --git a/projects/SINGE.yaml b/projects/SINGE.yaml index bfd15d1b4..f112a6aea 100644 --- a/projects/SINGE.yaml +++ b/projects/SINGE.yaml @@ -7,3 +7,4 @@ PIName: Anthony Gitter Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/SIUE_Quinones.yaml b/projects/SIUE_Quinones.yaml index 3a9e25b04..6b9e5c102 100644 --- a/projects/SIUE_Quinones.yaml +++ b/projects/SIUE_Quinones.yaml @@ -3,3 +3,4 @@ Department: Computer Science FieldOfScience: Computer Science Organization: Southern Illinois University Edwardsville PIName: Rubi Quinones +InstitutionID: 'https://osg-htc.org/iid/s19zlu9q6u7l' diff --git a/projects/SIUE_Staff.yaml b/projects/SIUE_Staff.yaml index ca782d8de..fb0e19a4e 100644 --- a/projects/SIUE_Staff.yaml +++ b/projects/SIUE_Staff.yaml @@ -9,3 +9,4 @@ ID: 668 Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/s19zlu9q6u7l' diff --git a/projects/SLAC_Nelson.yaml b/projects/SLAC_Nelson.yaml index 0598ad40b..8612b58b8 100644 --- a/projects/SLAC_Nelson.yaml +++ b/projects/SLAC_Nelson.yaml @@ -8,3 +8,4 @@ PIName: Timothy Nelson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gsbt8law2xf0' diff --git a/projects/SMOTNT.yaml b/projects/SMOTNT.yaml index fb4f26bcb..bb8c51697 100644 --- a/projects/SMOTNT.yaml +++ b/projects/SMOTNT.yaml @@ -11,3 +11,4 @@ PIName: Tongji Xing Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/qrem5k97ikiv' diff --git a/projects/SMRCNTP.yaml b/projects/SMRCNTP.yaml index aa32b1f2e..01e9f79ed 100644 --- a/projects/SMRCNTP.yaml +++ b/projects/SMRCNTP.yaml @@ -12,3 +12,4 @@ PIName: Joseph Yelk Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gpeckuwpdnrs' diff --git a/projects/SNOplus.yaml b/projects/SNOplus.yaml index ff7d8b123..b97daa8c3 100644 --- a/projects/SNOplus.yaml +++ b/projects/SNOplus.yaml @@ -17,3 +17,4 @@ PIName: Joshua R Klein Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/nv2rjrft01gg' diff --git a/projects/SO10GU.yaml b/projects/SO10GU.yaml index a8f5613fa..631a6f808 100644 --- a/projects/SO10GU.yaml +++ b/projects/SO10GU.yaml @@ -8,3 +8,4 @@ PIName: shaikh saad Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ogvkim1urhzk' diff --git a/projects/SOL.yaml b/projects/SOL.yaml index 5614668c8..8a01a108b 100644 --- a/projects/SOL.yaml +++ b/projects/SOL.yaml @@ -8,3 +8,4 @@ PIName: Tyson Swetnam Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/SOLID.yaml b/projects/SOLID.yaml index cedc51e23..ca539586a 100644 --- a/projects/SOLID.yaml +++ b/projects/SOLID.yaml @@ -7,3 +7,4 @@ PIName: Thomas Britton Sponsor: VirtualOrganization: Name: JLab +InstitutionID: 'https://osg-htc.org/iid/hlz41oydapzn' diff --git a/projects/SPRI_Smith.yaml b/projects/SPRI_Smith.yaml index 6eb7f64a0..1a749c32c 100644 --- a/projects/SPRI_Smith.yaml +++ b/projects/SPRI_Smith.yaml @@ -8,3 +8,4 @@ PIName: Colin Smith Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2jg5lguuacnw' diff --git a/projects/SSGAforCSP.yaml b/projects/SSGAforCSP.yaml index 091fb37e5..904e68372 100644 --- a/projects/SSGAforCSP.yaml +++ b/projects/SSGAforCSP.yaml @@ -13,3 +13,4 @@ PIName: Julio Facelli Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/iwlonrroeaal' diff --git a/projects/SUNYGeneseo_CIT.yaml b/projects/SUNYGeneseo_CIT.yaml index 4a2f4e025..fb9d3af2b 100644 --- a/projects/SUNYGeneseo_CIT.yaml +++ b/projects/SUNYGeneseo_CIT.yaml @@ -3,3 +3,4 @@ FieldOfScience: Computer & Information Sciences Organization: State University of New York College at Geneseo Department: Computing & Information Technology PIName: David Warden +InstitutionID: 'https://osg-htc.org/iid/c50lqqtwgcys' diff --git a/projects/SUNYUpstateMed_Schmitt.yaml b/projects/SUNYUpstateMed_Schmitt.yaml index 3a4d82fef..0cdacd986 100644 --- a/projects/SUNYUpstateMed_Schmitt.yaml +++ b/projects/SUNYUpstateMed_Schmitt.yaml @@ -7,3 +7,4 @@ PIName: Mark Schmitt Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/e323lei9gdjp' diff --git a/projects/SWC-OSG-IU15.yaml b/projects/SWC-OSG-IU15.yaml index 77cbf108c..c7a3fe669 100644 --- a/projects/SWC-OSG-IU15.yaml +++ b/projects/SWC-OSG-IU15.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/oe09ae0p2pmj' diff --git a/projects/SWC-OSG-UC14.yaml b/projects/SWC-OSG-UC14.yaml index fe8a0b0c0..331ee726d 100644 --- a/projects/SWC-OSG-UC14.yaml +++ b/projects/SWC-OSG-UC14.yaml @@ -8,3 +8,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/SWITCHHawaii.yaml b/projects/SWITCHHawaii.yaml index 890e5bf6b..a57c0e5a3 100644 --- a/projects/SWITCHHawaii.yaml +++ b/projects/SWITCHHawaii.yaml @@ -9,3 +9,4 @@ PIName: Matthias Fripp Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/34mcskejwysy' diff --git a/projects/SWOSU_SOCCER.yaml b/projects/SWOSU_SOCCER.yaml index aeb088595..f50400415 100644 --- a/projects/SWOSU_SOCCER.yaml +++ b/projects/SWOSU_SOCCER.yaml @@ -9,3 +9,4 @@ ID: '711' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/xpoj97mgs7iu' diff --git a/projects/SalemState_Poitevin.yaml b/projects/SalemState_Poitevin.yaml index 7282d6bb9..4981ebd18 100644 --- a/projects/SalemState_Poitevin.yaml +++ b/projects/SalemState_Poitevin.yaml @@ -7,3 +7,4 @@ PIName: Pedro Poitevin Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zsklkeksa9qy' diff --git a/projects/Sandia_LandModel.yaml b/projects/Sandia_LandModel.yaml index ebc006f8d..9776ddd6b 100644 --- a/projects/Sandia_LandModel.yaml +++ b/projects/Sandia_LandModel.yaml @@ -9,3 +9,4 @@ ID: '630' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wznjjkdsruco' diff --git a/projects/SbGenome.yaml b/projects/SbGenome.yaml index 281827999..b61ea3059 100644 --- a/projects/SbGenome.yaml +++ b/projects/SbGenome.yaml @@ -8,3 +8,4 @@ PIName: Dave Denlinger Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/984ms2rzh7do' diff --git a/projects/SciSim.yaml b/projects/SciSim.yaml index ac335d3a5..e7c0a37be 100644 --- a/projects/SciSim.yaml +++ b/projects/SciSim.yaml @@ -10,3 +10,4 @@ PIName: Amit Goel Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ozb6tv0up0g3' diff --git a/projects/SeaQuest.yaml b/projects/SeaQuest.yaml index c5605148b..809e30f05 100644 --- a/projects/SeaQuest.yaml +++ b/projects/SeaQuest.yaml @@ -8,3 +8,4 @@ PIName: David Christian Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: "https://osg-htc.org/iid/ik4s3ql8u1j7" diff --git a/projects/Seattle_Herman.yaml b/projects/Seattle_Herman.yaml index 8892bb59d..c65f74679 100644 --- a/projects/Seattle_Herman.yaml +++ b/projects/Seattle_Herman.yaml @@ -6,3 +6,4 @@ Department: Computer Science FieldOfScience: Computer and Information Sciences Organization: Seattle University PIName: Nate Kremer-Herman +InstitutionID: 'https://osg-htc.org/iid/nn54csg34gty' diff --git a/projects/Shortrunjobs.yaml b/projects/Shortrunjobs.yaml index 1f5436882..38082056a 100644 --- a/projects/Shortrunjobs.yaml +++ b/projects/Shortrunjobs.yaml @@ -9,3 +9,4 @@ PIName: Donny Shrum Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0yddmgnh2xl5' diff --git a/projects/SimCenter.yaml b/projects/SimCenter.yaml index c283284a0..700ee826c 100644 --- a/projects/SimCenter.yaml +++ b/projects/SimCenter.yaml @@ -7,3 +7,4 @@ PIName: Anthony Skjellum Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4e79d27c93p7' diff --git a/projects/SimPrily.yaml b/projects/SimPrily.yaml index 408f51558..81b8d64e7 100644 --- a/projects/SimPrily.yaml +++ b/projects/SimPrily.yaml @@ -7,3 +7,4 @@ PIName: Ariella Gladstein Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/Snowmass.yaml b/projects/Snowmass.yaml index 45dff1049..65f33eaa6 100644 --- a/projects/Snowmass.yaml +++ b/projects/Snowmass.yaml @@ -19,3 +19,4 @@ PIName: Meenakshi Narain Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/0ytxfy0n4hol' diff --git a/projects/SourceCoding.yaml b/projects/SourceCoding.yaml index 2e8b26e28..b4a24a983 100644 --- a/projects/SourceCoding.yaml +++ b/projects/SourceCoding.yaml @@ -9,3 +9,4 @@ PIName: David Mitchell Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zoe98r1f2ztc' diff --git a/projects/SoyKB.yaml b/projects/SoyKB.yaml index dca5fd7e5..eee024784 100644 --- a/projects/SoyKB.yaml +++ b/projects/SoyKB.yaml @@ -10,3 +10,4 @@ PIName: Dong Xu Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/dohu2f6ba08u' diff --git a/projects/SpatialModeling.yaml b/projects/SpatialModeling.yaml index 764cc8dc8..d36194c2b 100644 --- a/projects/SpatialModeling.yaml +++ b/projects/SpatialModeling.yaml @@ -8,3 +8,4 @@ PIName: Brook Milligan Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zoe98r1f2ztc' diff --git a/projects/Specppxf.yaml b/projects/Specppxf.yaml index 870642b35..fbe74f6a8 100644 --- a/projects/Specppxf.yaml +++ b/projects/Specppxf.yaml @@ -8,3 +8,4 @@ PIName: Alabi Adebusola Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/n6cai04882ca' diff --git a/projects/Spelman_Tekle.yaml b/projects/Spelman_Tekle.yaml index 73c7b2d7d..cfaec4e97 100644 --- a/projects/Spelman_Tekle.yaml +++ b/projects/Spelman_Tekle.yaml @@ -7,3 +7,4 @@ PIName: Yonas Tekle Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/tls5zf8zntze' diff --git a/projects/StSNE.yaml b/projects/StSNE.yaml index 127799f08..dbb2bc892 100644 --- a/projects/StSNE.yaml +++ b/projects/StSNE.yaml @@ -7,3 +7,4 @@ PIName: Yichen Cheng Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ybl3snr9pbs1' diff --git a/projects/StanfordRCC.yaml b/projects/StanfordRCC.yaml index 6115fdd8d..5dfb024d6 100644 --- a/projects/StanfordRCC.yaml +++ b/projects/StanfordRCC.yaml @@ -7,3 +7,4 @@ PIName: Ruth Marinshaw Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/Stanford_Das.yaml b/projects/Stanford_Das.yaml index 89513bd7f..b42595553 100644 --- a/projects/Stanford_Das.yaml +++ b/projects/Stanford_Das.yaml @@ -10,3 +10,4 @@ ID: '756' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/Stanford_Fletcher.yaml b/projects/Stanford_Fletcher.yaml index 596e1c86d..451df02d2 100644 --- a/projects/Stanford_Fletcher.yaml +++ b/projects/Stanford_Fletcher.yaml @@ -9,3 +9,4 @@ ID: '845' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/Stanford_Gilula.yaml b/projects/Stanford_Gilula.yaml index 9d94b996d..cd44daca8 100644 --- a/projects/Stanford_Gilula.yaml +++ b/projects/Stanford_Gilula.yaml @@ -8,3 +8,4 @@ PIName: Maxim Gilula Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/Stanford_Zia.yaml b/projects/Stanford_Zia.yaml index acdd51a1d..9d78585c3 100644 --- a/projects/Stanford_Zia.yaml +++ b/projects/Stanford_Zia.yaml @@ -9,3 +9,4 @@ ID: '708' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/Swift.yaml b/projects/Swift.yaml index 14bf53915..43d9c7d9f 100644 --- a/projects/Swift.yaml +++ b/projects/Swift.yaml @@ -7,3 +7,4 @@ PIName: Kyle Chard Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/Syracuse_Brown.yaml b/projects/Syracuse_Brown.yaml index 041ad6820..fdce41bbc 100644 --- a/projects/Syracuse_Brown.yaml +++ b/projects/Syracuse_Brown.yaml @@ -7,3 +7,4 @@ PIName: Duncan Brown Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mzpz26kp0f3p' diff --git a/projects/Syracuse_ITSRC.yal b/projects/Syracuse_ITSRC.yaml similarity index 83% rename from projects/Syracuse_ITSRC.yal rename to projects/Syracuse_ITSRC.yaml index 7ecd93c8a..eb4533539 100644 --- a/projects/Syracuse_ITSRC.yal +++ b/projects/Syracuse_ITSRC.yaml @@ -6,3 +6,4 @@ PIName: Eric Sedore Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mzpz26kp0f3p' diff --git a/projects/Syracuse_Nitz.yaml b/projects/Syracuse_Nitz.yaml index c1f2be67d..0fd305dbb 100644 --- a/projects/Syracuse_Nitz.yaml +++ b/projects/Syracuse_Nitz.yaml @@ -3,3 +3,4 @@ Department: Physics FieldOfScience: Astronomy and Astrophysics Organization: Syracuse University PIName: Alex Nitz +InstitutionID: 'https://osg-htc.org/iid/mzpz26kp0f3p' diff --git a/projects/SysBioEdu.yaml b/projects/SysBioEdu.yaml index c56407d78..1c38928da 100644 --- a/projects/SysBioEdu.yaml +++ b/projects/SysBioEdu.yaml @@ -8,3 +8,4 @@ PIName: Stephen Ficklin Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/e0k6xtxoggq8' diff --git a/projects/TAMUCT_Thron.yaml b/projects/TAMUCT_Thron.yaml index cef66630e..5d6ece2b5 100644 --- a/projects/TAMUCT_Thron.yaml +++ b/projects/TAMUCT_Thron.yaml @@ -3,3 +3,4 @@ Department: Department of Science and Mathematics FieldOfScience: Mathematics and Statistics Organization: Texas A&M University-Central Texas PIName: Christopher Thron +InstitutionID: "https://osg-htc.org/iid/o5wwhz0gsemj" diff --git a/projects/TAMU_Rathinam.yaml b/projects/TAMU_Rathinam.yaml index 1fd498e8d..db09d901d 100644 --- a/projects/TAMU_Rathinam.yaml +++ b/projects/TAMU_Rathinam.yaml @@ -7,3 +7,4 @@ PIName: Sivakumar Rathinam Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8wqbbz4i2cma' diff --git a/projects/TAMUpheno.yaml b/projects/TAMUpheno.yaml index ab06cb04f..8472ffcee 100644 --- a/projects/TAMUpheno.yaml +++ b/projects/TAMUpheno.yaml @@ -20,3 +20,4 @@ PIName: Bhaskar Dutta Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8wqbbz4i2cma' diff --git a/projects/TCGAPartCorr.yaml b/projects/TCGAPartCorr.yaml index 6bf66bca9..c0efb05e7 100644 --- a/projects/TCGAPartCorr.yaml +++ b/projects/TCGAPartCorr.yaml @@ -8,3 +8,4 @@ PIName: Chad Shaw Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/gk0vqx4uormq' diff --git a/projects/TCNJ_Science.yaml b/projects/TCNJ_Science.yaml index fc673457a..5c559cba4 100644 --- a/projects/TCNJ_Science.yaml +++ b/projects/TCNJ_Science.yaml @@ -7,3 +7,4 @@ PIName: Sunita Kramer Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q901ybs1a9nf' diff --git a/projects/TDAI_Staff.yaml b/projects/TDAI_Staff.yaml index 3f9dfb6df..85e587283 100644 --- a/projects/TDAI_Staff.yaml +++ b/projects/TDAI_Staff.yaml @@ -7,3 +7,4 @@ PIName: Tanya Berger-Wolf Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/984ms2rzh7do' diff --git a/projects/TDAstats.yaml b/projects/TDAstats.yaml index e81558df0..810a90347 100644 --- a/projects/TDAstats.yaml +++ b/projects/TDAstats.yaml @@ -7,3 +7,4 @@ PIName: David Meyer Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/TG-ASC130043.yaml b/projects/TG-ASC130043.yaml index 3da2e928b..064a991e7 100644 --- a/projects/TG-ASC130043.yaml +++ b/projects/TG-ASC130043.yaml @@ -26,3 +26,4 @@ PIName: David Rogers Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/ztzfsirofyrb' diff --git a/projects/TG-ASC180023.yaml b/projects/TG-ASC180023.yaml index 7bcab4138..5bbb5fd40 100644 --- a/projects/TG-ASC180023.yaml +++ b/projects/TG-ASC180023.yaml @@ -8,3 +8,4 @@ PIName: Scott Valcourt Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/454t2lfhcfpp' diff --git a/projects/TG-AST140088.yaml b/projects/TG-AST140088.yaml index 627fd9ea7..e53c35ba4 100644 --- a/projects/TG-AST140088.yaml +++ b/projects/TG-AST140088.yaml @@ -29,3 +29,4 @@ PIName: Francis Halzen Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/TG-AST150012.yaml b/projects/TG-AST150012.yaml index 9a0998426..e70621fce 100644 --- a/projects/TG-AST150012.yaml +++ b/projects/TG-AST150012.yaml @@ -49,3 +49,4 @@ PIName: Gregory Snyder Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/uj5felct2t3z' diff --git a/projects/TG-AST150033.yaml b/projects/TG-AST150033.yaml index 4626b1aa8..f567f98df 100644 --- a/projects/TG-AST150033.yaml +++ b/projects/TG-AST150033.yaml @@ -30,3 +30,4 @@ PIName: Juliette Becker Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/TG-AST150044.yaml b/projects/TG-AST150044.yaml index 4c305a009..08cb29bae 100644 --- a/projects/TG-AST150044.yaml +++ b/projects/TG-AST150044.yaml @@ -15,3 +15,4 @@ PIName: Jennifer Lotz Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/uj5felct2t3z' diff --git a/projects/TG-AST150046.yaml b/projects/TG-AST150046.yaml index e74e1d697..c55540254 100644 --- a/projects/TG-AST150046.yaml +++ b/projects/TG-AST150046.yaml @@ -12,3 +12,4 @@ PIName: Suzanne Hawley Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/8lpmoeouw66o' diff --git a/projects/TG-AST160036.yaml b/projects/TG-AST160036.yaml index 4c577c131..31eb6475f 100644 --- a/projects/TG-AST160036.yaml +++ b/projects/TG-AST160036.yaml @@ -24,3 +24,4 @@ PIName: James Davenport Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/4wx5i3zndzma' diff --git a/projects/TG-AST160046.yaml b/projects/TG-AST160046.yaml index 50115d0a1..fecee1564 100644 --- a/projects/TG-AST160046.yaml +++ b/projects/TG-AST160046.yaml @@ -23,3 +23,4 @@ PIName: Leslie Hebb Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/pnmgrixofiq9' diff --git a/projects/TG-AST170008.yaml b/projects/TG-AST170008.yaml index 6643e4401..718398c6d 100644 --- a/projects/TG-AST170008.yaml +++ b/projects/TG-AST170008.yaml @@ -25,3 +25,4 @@ PIName: Stephanie Hamilton Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/TG-AST190031.yaml b/projects/TG-AST190031.yaml index 9f6176fb6..bb2783d74 100644 --- a/projects/TG-AST190031.yaml +++ b/projects/TG-AST190031.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/TG-AST190036.yaml b/projects/TG-AST190036.yaml index 96a72500f..19d3a91f8 100644 --- a/projects/TG-AST190036.yaml +++ b/projects/TG-AST190036.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/TG-ATM130009.yaml b/projects/TG-ATM130009.yaml index e181891d5..7996b0a5c 100644 --- a/projects/TG-ATM130009.yaml +++ b/projects/TG-ATM130009.yaml @@ -25,3 +25,4 @@ PIName: Phillip Anderson Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/eouhp4r1y2e2' diff --git a/projects/TG-ATM130015.yaml b/projects/TG-ATM130015.yaml index 7d2c4e6d5..e5ce4d7e4 100644 --- a/projects/TG-ATM130015.yaml +++ b/projects/TG-ATM130015.yaml @@ -14,3 +14,4 @@ PIName: Phillip Anderson Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/eouhp4r1y2e2' diff --git a/projects/TG-BCS110002.yaml b/projects/TG-BCS110002.yaml index 5e977a41c..dbb5dab14 100644 --- a/projects/TG-BCS110002.yaml +++ b/projects/TG-BCS110002.yaml @@ -48,3 +48,4 @@ PIName: Thomas Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/oe09ae0p2pmj' diff --git a/projects/TG-BIO180012.yaml b/projects/TG-BIO180012.yaml index 0d1a4349b..9c330f9a4 100644 --- a/projects/TG-BIO180012.yaml +++ b/projects/TG-BIO180012.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/f62wuiqfjmxm' diff --git a/projects/TG-BIO200038.yaml b/projects/TG-BIO200038.yaml index ccf6b5935..f69603c73 100644 --- a/projects/TG-BIO200038.yaml +++ b/projects/TG-BIO200038.yaml @@ -9,3 +9,4 @@ PIName: Joseph Yesselman Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/TG-BIO210118.yaml b/projects/TG-BIO210118.yaml index 8c64a711f..d4c301c3d 100644 --- a/projects/TG-BIO210118.yaml +++ b/projects/TG-BIO210118.yaml @@ -7,3 +7,4 @@ ID: '834' Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/f62wuiqfjmxm' diff --git a/projects/TG-BIO210164.yaml b/projects/TG-BIO210164.yaml index a4f200ca7..7dabb22f6 100644 --- a/projects/TG-BIO210164.yaml +++ b/projects/TG-BIO210164.yaml @@ -11,3 +11,4 @@ PIName: Michael Levin Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/vtcuoa0mgv9x' diff --git a/projects/TG-CCR130001.yaml b/projects/TG-CCR130001.yaml index cc712d170..45e927d00 100644 --- a/projects/TG-CCR130001.yaml +++ b/projects/TG-CCR130001.yaml @@ -7,3 +7,4 @@ PIName: Ruth Marinshaw Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/TG-CCR140028.yaml b/projects/TG-CCR140028.yaml index b3634a649..000ebaf41 100644 --- a/projects/TG-CCR140028.yaml +++ b/projects/TG-CCR140028.yaml @@ -8,3 +8,4 @@ PIName: Shantenu Jha Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/qrem5k97ikiv' diff --git a/projects/TG-CDA080011.yaml b/projects/TG-CDA080011.yaml index d6e37fbc8..3f17e7855 100644 --- a/projects/TG-CDA080011.yaml +++ b/projects/TG-CDA080011.yaml @@ -7,3 +7,4 @@ PIName: Vikram Gazula Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/532yhevnxlxc' diff --git a/projects/TG-CDA100013.yaml b/projects/TG-CDA100013.yaml index 75a5a66b5..de25d614c 100644 --- a/projects/TG-CDA100013.yaml +++ b/projects/TG-CDA100013.yaml @@ -8,3 +8,4 @@ PIName: Mark Reed Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/nhz3r9d0308l' diff --git a/projects/TG-CHE130091.yaml b/projects/TG-CHE130091.yaml index 5a2468697..b852bfa22 100644 --- a/projects/TG-CHE130091.yaml +++ b/projects/TG-CHE130091.yaml @@ -23,3 +23,4 @@ PIName: Paul Siders Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/4h44weyae1r3' diff --git a/projects/TG-CHE130103.yaml b/projects/TG-CHE130103.yaml index 78d982c90..5f9ea728b 100644 --- a/projects/TG-CHE130103.yaml +++ b/projects/TG-CHE130103.yaml @@ -24,3 +24,4 @@ PIName: Jeremy Moix Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/TG-CHE140094.yaml b/projects/TG-CHE140094.yaml index b62c84282..3cf00c336 100644 --- a/projects/TG-CHE140094.yaml +++ b/projects/TG-CHE140094.yaml @@ -14,3 +14,4 @@ PIName: John Stubbs Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/0i20662pewxv' diff --git a/projects/TG-CHE140098.yaml b/projects/TG-CHE140098.yaml index c6bcfbcec..75f73a23b 100644 --- a/projects/TG-CHE140098.yaml +++ b/projects/TG-CHE140098.yaml @@ -48,3 +48,4 @@ PIName: Paul Siders Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/4h44weyae1r3' diff --git a/projects/TG-CHE140110.yaml b/projects/TG-CHE140110.yaml index f679bee26..7cc75d6ab 100644 --- a/projects/TG-CHE140110.yaml +++ b/projects/TG-CHE140110.yaml @@ -12,3 +12,4 @@ PIName: John Stubbs Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/0i20662pewxv' diff --git a/projects/TG-CHE150012.yaml b/projects/TG-CHE150012.yaml index e2802a629..871a3e2a5 100644 --- a/projects/TG-CHE150012.yaml +++ b/projects/TG-CHE150012.yaml @@ -14,3 +14,4 @@ PIName: Christopher Fennell Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/ogvkim1urhzk' diff --git a/projects/TG-CHE170021.yaml b/projects/TG-CHE170021.yaml index af6e681bb..ae1ec2b44 100644 --- a/projects/TG-CHE170021.yaml +++ b/projects/TG-CHE170021.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/ozb6tv0up0g3' diff --git a/projects/TG-CHE190012.yaml b/projects/TG-CHE190012.yaml index 8f9493aee..76315318e 100644 --- a/projects/TG-CHE190012.yaml +++ b/projects/TG-CHE190012.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/ozb6tv0up0g3' diff --git a/projects/TG-CHE190046.yaml b/projects/TG-CHE190046.yaml index edfd2bdde..429672575 100644 --- a/projects/TG-CHE190046.yaml +++ b/projects/TG-CHE190046.yaml @@ -9,3 +9,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/TG-CHE200063.yaml b/projects/TG-CHE200063.yaml index b8e40faad..d7af77214 100644 --- a/projects/TG-CHE200063.yaml +++ b/projects/TG-CHE200063.yaml @@ -8,3 +8,4 @@ ID: '701' Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/mxii12n9x22s' diff --git a/projects/TG-CHE200122.yaml b/projects/TG-CHE200122.yaml index 75e760dbb..d38f974bf 100644 --- a/projects/TG-CHE200122.yaml +++ b/projects/TG-CHE200122.yaml @@ -40,3 +40,4 @@ ResourceAllocations: ExecuteResourceGroups: - GroupName: TACC-Frontera LocalAllocationID: "CHE20009" +InstitutionID: 'https://osg-htc.org/iid/3cqqrc2cgibl' diff --git a/projects/TG-CHE210056.yaml b/projects/TG-CHE210056.yaml index 80f3482d9..ee59f8997 100644 --- a/projects/TG-CHE210056.yaml +++ b/projects/TG-CHE210056.yaml @@ -8,3 +8,4 @@ PIName: Jerome Delhommelle Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mxii12n9x22s' diff --git a/projects/TG-CHM210003.yaml b/projects/TG-CHM210003.yaml index a3202bef3..88c955852 100644 --- a/projects/TG-CHM210003.yaml +++ b/projects/TG-CHM210003.yaml @@ -13,3 +13,4 @@ PIName: Guy Mongelli Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v3s5cj6tgrvz' diff --git a/projects/TG-CIE160039.yaml b/projects/TG-CIE160039.yaml index d57ab10dd..00115893e 100644 --- a/projects/TG-CIE160039.yaml +++ b/projects/TG-CIE160039.yaml @@ -7,3 +7,4 @@ PIName: Franz Franchetti Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3cqqrc2cgibl' diff --git a/projects/TG-CIE170004.yaml b/projects/TG-CIE170004.yaml index ee740fffa..b37e5b5cb 100644 --- a/projects/TG-CIE170004.yaml +++ b/projects/TG-CIE170004.yaml @@ -9,3 +9,4 @@ PIName: Lee Liming Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/TG-CIE170019.yaml b/projects/TG-CIE170019.yaml index 1ac5cf29f..fba663cea 100644 --- a/projects/TG-CIE170019.yaml +++ b/projects/TG-CIE170019.yaml @@ -9,3 +9,4 @@ ID: '644' Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/xavkx489i6pu' diff --git a/projects/TG-CIE170062.yaml b/projects/TG-CIE170062.yaml index 86f8d67d6..9ccbd869c 100644 --- a/projects/TG-CIE170062.yaml +++ b/projects/TG-CIE170062.yaml @@ -26,3 +26,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/gpeckuwpdnrs' diff --git a/projects/TG-CIS210126.yaml b/projects/TG-CIS210126.yaml index cc9c50584..9901fd6e2 100644 --- a/projects/TG-CIS210126.yaml +++ b/projects/TG-CIS210126.yaml @@ -7,3 +7,4 @@ PIName: Alexander Nelson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/78b3lgmajszi' diff --git a/projects/TG-DBS170012.yaml b/projects/TG-DBS170012.yaml index a0d6471bc..508f67c91 100644 --- a/projects/TG-DBS170012.yaml +++ b/projects/TG-DBS170012.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/hv6wemek62rw' diff --git a/projects/TG-DDM160003.yaml b/projects/TG-DDM160003.yaml index 60499709a..3d2eb78ea 100644 --- a/projects/TG-DDM160003.yaml +++ b/projects/TG-DDM160003.yaml @@ -7,3 +7,4 @@ ID: '774' Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/6edduwj65dlr' diff --git a/projects/TG-DEB140008.yaml b/projects/TG-DEB140008.yaml index b336ebba8..2d7b43f22 100644 --- a/projects/TG-DEB140008.yaml +++ b/projects/TG-DEB140008.yaml @@ -24,3 +24,4 @@ PIName: Robert Toonen Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/34mcskejwysy' diff --git a/projects/TG-DMR130036.yaml b/projects/TG-DMR130036.yaml index b7738afa0..a3578dee3 100644 --- a/projects/TG-DMR130036.yaml +++ b/projects/TG-DMR130036.yaml @@ -14,3 +14,4 @@ PIName: Emanuel Gull Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/TG-DMR140072.yaml b/projects/TG-DMR140072.yaml index 7d76371fd..aa8a6b9c7 100644 --- a/projects/TG-DMR140072.yaml +++ b/projects/TG-DMR140072.yaml @@ -27,3 +27,4 @@ PIName: Adrian Del Maestro Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/mutx073mwd8x' diff --git a/projects/TG-DMR160157.yaml b/projects/TG-DMR160157.yaml index 9f3f62b30..5df0fa75d 100644 --- a/projects/TG-DMR160157.yaml +++ b/projects/TG-DMR160157.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/7rhak0ujmsoe' diff --git a/projects/TG-DMR180127.yaml b/projects/TG-DMR180127.yaml index 39200ebb6..b69dbc602 100644 --- a/projects/TG-DMR180127.yaml +++ b/projects/TG-DMR180127.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/TG-DMR190045.yaml b/projects/TG-DMR190045.yaml index 118f83259..da47932c3 100644 --- a/projects/TG-DMR190045.yaml +++ b/projects/TG-DMR190045.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/mutx073mwd8x' diff --git a/projects/TG-DMR190101.yaml b/projects/TG-DMR190101.yaml index 5eb5c29f2..4f87769a2 100644 --- a/projects/TG-DMR190101.yaml +++ b/projects/TG-DMR190101.yaml @@ -8,3 +8,4 @@ ID: '672' Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/mutx073mwd8x' diff --git a/projects/TG-DMS120024.yaml b/projects/TG-DMS120024.yaml index 61c55b37b..fccdb5c38 100644 --- a/projects/TG-DMS120024.yaml +++ b/projects/TG-DMS120024.yaml @@ -8,3 +8,4 @@ PIName: Benjamin Ong Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/wala2w0ka0gb' diff --git a/projects/TG-DMS150022.yaml b/projects/TG-DMS150022.yaml index 46dfae5a7..88396d10e 100644 --- a/projects/TG-DMS150022.yaml +++ b/projects/TG-DMS150022.yaml @@ -19,3 +19,4 @@ PIName: Shahriar Afkhami Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/zhy58gsknnaw' diff --git a/projects/TG-DMS180031.yaml b/projects/TG-DMS180031.yaml index bfad878ae..377e86054 100644 --- a/projects/TG-DMS180031.yaml +++ b/projects/TG-DMS180031.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/4vhk41w4vvn6' diff --git a/projects/TG-DMS190036.yaml b/projects/TG-DMS190036.yaml index cbc9692af..a86972a23 100644 --- a/projects/TG-DMS190036.yaml +++ b/projects/TG-DMS190036.yaml @@ -8,3 +8,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/TG-GEO150003.yaml b/projects/TG-GEO150003.yaml index a1edee18d..e34990872 100644 --- a/projects/TG-GEO150003.yaml +++ b/projects/TG-GEO150003.yaml @@ -10,3 +10,4 @@ PIName: Jon Pelletier Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/TG-IBN130001.yaml b/projects/TG-IBN130001.yaml index 9ad09612a..072f5faa8 100644 --- a/projects/TG-IBN130001.yaml +++ b/projects/TG-IBN130001.yaml @@ -20,3 +20,4 @@ PIName: Donald Krieger Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/2ayx10b74xua' diff --git a/projects/TG-IRI130016.yaml b/projects/TG-IRI130016.yaml index 6af0d232c..12c436717 100644 --- a/projects/TG-IRI130016.yaml +++ b/projects/TG-IRI130016.yaml @@ -11,3 +11,4 @@ PIName: Joseph Cohen Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/l6j63czttmv6' diff --git a/projects/TG-IRI160006.yaml b/projects/TG-IRI160006.yaml index dca45f8c0..e568a0987 100644 --- a/projects/TG-IRI160006.yaml +++ b/projects/TG-IRI160006.yaml @@ -11,3 +11,4 @@ PIName: Victor Hazlewood Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: "https://osg-htc.org/iid/hp8930spi37u" diff --git a/projects/TG-IRI160007.yaml b/projects/TG-IRI160007.yaml index 51f78e233..741111e8a 100644 --- a/projects/TG-IRI160007.yaml +++ b/projects/TG-IRI160007.yaml @@ -12,3 +12,4 @@ PIName: Richard Knepper Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0lcrhlbjpu9r' diff --git a/projects/TG-MAT200005.yaml b/projects/TG-MAT200005.yaml index 6b7e53fe5..10398ec9f 100644 --- a/projects/TG-MAT200005.yaml +++ b/projects/TG-MAT200005.yaml @@ -7,3 +7,4 @@ ID: '737' Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/eq81k8qpbcq9' diff --git a/projects/TG-MCB060061N.yaml b/projects/TG-MCB060061N.yaml index 493380ade..0520aebeb 100644 --- a/projects/TG-MCB060061N.yaml +++ b/projects/TG-MCB060061N.yaml @@ -15,3 +15,4 @@ PIName: Jeffry D. Madura Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/7t36l6cq2c14' diff --git a/projects/TG-MCB090163.yaml b/projects/TG-MCB090163.yaml index dc9981b70..022d85bb3 100644 --- a/projects/TG-MCB090163.yaml +++ b/projects/TG-MCB090163.yaml @@ -23,3 +23,4 @@ PIName: Michael Hagan Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/z5fxzhzsjpb0' diff --git a/projects/TG-MCB090174.yaml b/projects/TG-MCB090174.yaml index 2de590f56..9b03f0dfa 100644 --- a/projects/TG-MCB090174.yaml +++ b/projects/TG-MCB090174.yaml @@ -21,3 +21,4 @@ PIName: Shantenu Jha Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/qrem5k97ikiv' diff --git a/projects/TG-MCB100109.yaml b/projects/TG-MCB100109.yaml index 5eab6da5c..07f7ff173 100644 --- a/projects/TG-MCB100109.yaml +++ b/projects/TG-MCB100109.yaml @@ -21,3 +21,4 @@ PIName: Lillian Chong Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/2ayx10b74xua' diff --git a/projects/TG-MCB130072.yaml b/projects/TG-MCB130072.yaml index 990b9ce63..8a06bbfe4 100644 --- a/projects/TG-MCB130072.yaml +++ b/projects/TG-MCB130072.yaml @@ -8,3 +8,4 @@ PIName: Benjamin Ong Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/wala2w0ka0gb' diff --git a/projects/TG-MCB130135.yaml b/projects/TG-MCB130135.yaml index 53fbbb185..a716f1b2f 100644 --- a/projects/TG-MCB130135.yaml +++ b/projects/TG-MCB130135.yaml @@ -7,3 +7,4 @@ PIName: Ashok Mudgapalli Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/01g2a0xhkmrv' diff --git a/projects/TG-MCB140088.yaml b/projects/TG-MCB140088.yaml index 038e4f003..c567a55f5 100644 --- a/projects/TG-MCB140088.yaml +++ b/projects/TG-MCB140088.yaml @@ -28,3 +28,4 @@ PIName: Jason Key Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/n1kbnzl7kyiv' diff --git a/projects/TG-MCB140160.yaml b/projects/TG-MCB140160.yaml index 14737e559..c1ee9d05c 100644 --- a/projects/TG-MCB140160.yaml +++ b/projects/TG-MCB140160.yaml @@ -42,3 +42,4 @@ PIName: David Rhee Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/yzcm7hs9f1d0' diff --git a/projects/TG-MCB140211.yaml b/projects/TG-MCB140211.yaml index bc25bc7c5..59d9bb2c7 100644 --- a/projects/TG-MCB140211.yaml +++ b/projects/TG-MCB140211.yaml @@ -23,3 +23,4 @@ PIName: Hong Qin Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/tls5zf8zntze' diff --git a/projects/TG-MCB140232.yaml b/projects/TG-MCB140232.yaml index d53a167b8..778ec9b1f 100644 --- a/projects/TG-MCB140232.yaml +++ b/projects/TG-MCB140232.yaml @@ -21,3 +21,4 @@ PIName: Alan Chen Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/m9adt6gcsr8c' diff --git a/projects/TG-MCB140268.yaml b/projects/TG-MCB140268.yaml index 60ad96fc6..27e334b16 100644 --- a/projects/TG-MCB140268.yaml +++ b/projects/TG-MCB140268.yaml @@ -44,3 +44,4 @@ PIName: Graziano Vernizzi Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/kd5q9wxz5757' diff --git a/projects/TG-MCB150001.yaml b/projects/TG-MCB150001.yaml index 998501767..44ed69884 100644 --- a/projects/TG-MCB150001.yaml +++ b/projects/TG-MCB150001.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/lbg0jt5w2rks' diff --git a/projects/TG-MCB150090.yaml b/projects/TG-MCB150090.yaml index 0f7d16e21..2918e1d9e 100644 --- a/projects/TG-MCB150090.yaml +++ b/projects/TG-MCB150090.yaml @@ -19,3 +19,4 @@ PIName: Emiliano Brini Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/qqd2s2b6m7eh' diff --git a/projects/TG-MCB160020.yaml b/projects/TG-MCB160020.yaml index a403af31e..9d7d94f51 100644 --- a/projects/TG-MCB160020.yaml +++ b/projects/TG-MCB160020.yaml @@ -9,3 +9,4 @@ PIName: Rejwan Ali Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uwam2e6xh8l2' diff --git a/projects/TG-MCB160027.yaml b/projects/TG-MCB160027.yaml index 187681eea..b8052ce18 100644 --- a/projects/TG-MCB160027.yaml +++ b/projects/TG-MCB160027.yaml @@ -26,3 +26,4 @@ PIName: Yang Zhang Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/TG-MCB160069.yaml b/projects/TG-MCB160069.yaml index 92d3a1eef..23f80193b 100644 --- a/projects/TG-MCB160069.yaml +++ b/projects/TG-MCB160069.yaml @@ -14,3 +14,4 @@ PIName: Edward O'Brien Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/f1tlj6c19ppg' diff --git a/projects/TG-MCB160192.yaml b/projects/TG-MCB160192.yaml index f75ef3c84..de17081c8 100644 --- a/projects/TG-MCB160192.yaml +++ b/projects/TG-MCB160192.yaml @@ -29,3 +29,4 @@ PIName: Samuel Thompson Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/7nlvlasx7q46' diff --git a/projects/TG-MCB170126.yaml b/projects/TG-MCB170126.yaml index a7a059536..e4764d649 100644 --- a/projects/TG-MCB170126.yaml +++ b/projects/TG-MCB170126.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/0lcrhlbjpu9r' diff --git a/projects/TG-MCB190026.yaml b/projects/TG-MCB190026.yaml index 2ff23b4cb..3273630df 100644 --- a/projects/TG-MCB190026.yaml +++ b/projects/TG-MCB190026.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/oe09ae0p2pmj' diff --git a/projects/TG-MCB190187.yaml b/projects/TG-MCB190187.yaml index e811e0b9a..e9c0547fd 100644 --- a/projects/TG-MCB190187.yaml +++ b/projects/TG-MCB190187.yaml @@ -9,3 +9,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/7rhak0ujmsoe' diff --git a/projects/TG-MCH210037.yaml b/projects/TG-MCH210037.yaml index 27b837b6f..f50fb1530 100644 --- a/projects/TG-MCH210037.yaml +++ b/projects/TG-MCH210037.yaml @@ -8,3 +8,4 @@ PIName: Hesam Askari Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v3s5cj6tgrvz' diff --git a/projects/TG-OCE130029.yaml b/projects/TG-OCE130029.yaml index 6f9866a2c..cf0b86278 100644 --- a/projects/TG-OCE130029.yaml +++ b/projects/TG-OCE130029.yaml @@ -26,3 +26,4 @@ PIName: Yvonne Chan Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/34mcskejwysy' diff --git a/projects/TG-OCE140013.yaml b/projects/TG-OCE140013.yaml index 588542388..d0e4fdbc2 100644 --- a/projects/TG-OCE140013.yaml +++ b/projects/TG-OCE140013.yaml @@ -26,3 +26,4 @@ PIName: Yvonne Chan Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/34mcskejwysy' diff --git a/projects/TG-PHY110015.yaml b/projects/TG-PHY110015.yaml index 4a5587ac7..eb020759c 100644 --- a/projects/TG-PHY110015.yaml +++ b/projects/TG-PHY110015.yaml @@ -18,3 +18,4 @@ PIName: Pran Nath Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/454t2lfhcfpp' diff --git a/projects/TG-PHY120014.yaml b/projects/TG-PHY120014.yaml index 5f1dbd111..483fc4da1 100644 --- a/projects/TG-PHY120014.yaml +++ b/projects/TG-PHY120014.yaml @@ -25,3 +25,4 @@ PIName: Qaisar Shafi Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/j2iu11x3iayo' diff --git a/projects/TG-PHY130048.yaml b/projects/TG-PHY130048.yaml index 5741386d5..eef6599a2 100644 --- a/projects/TG-PHY130048.yaml +++ b/projects/TG-PHY130048.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/mavkovkq2s0l' diff --git a/projects/TG-PHY140048.yaml b/projects/TG-PHY140048.yaml index 130a8b4cb..28f89cf31 100644 --- a/projects/TG-PHY140048.yaml +++ b/projects/TG-PHY140048.yaml @@ -7,3 +7,4 @@ ID: '750' Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/epwuin5ootnr' diff --git a/projects/TG-PHY150040.yaml b/projects/TG-PHY150040.yaml index 59dc09b73..749e36983 100644 --- a/projects/TG-PHY150040.yaml +++ b/projects/TG-PHY150040.yaml @@ -20,3 +20,4 @@ PIName: Francis Halzen Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/TG-PHY160001.yaml b/projects/TG-PHY160001.yaml index 4edcb8015..14e5f4a9d 100644 --- a/projects/TG-PHY160001.yaml +++ b/projects/TG-PHY160001.yaml @@ -21,3 +21,4 @@ PIName: Terrance Figy Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/p3nn2sljiwwl' diff --git a/projects/TG-PHY160031.yaml b/projects/TG-PHY160031.yaml index 56d91f1a7..f5d1f90b4 100644 --- a/projects/TG-PHY160031.yaml +++ b/projects/TG-PHY160031.yaml @@ -13,3 +13,4 @@ PIName: Nepomuk Otte Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/TG-PHY180007.yaml b/projects/TG-PHY180007.yaml index c75d355a4..61c4d09a3 100644 --- a/projects/TG-PHY180007.yaml +++ b/projects/TG-PHY180007.yaml @@ -39,3 +39,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/d54pf46v5aqz' diff --git a/projects/TG-PHY180035.yaml b/projects/TG-PHY180035.yaml index 4328271c2..28e378918 100644 --- a/projects/TG-PHY180035.yaml +++ b/projects/TG-PHY180035.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/d54pf46v5aqz' diff --git a/projects/TG-PHY200004.yaml b/projects/TG-PHY200004.yaml index b6110a5d3..1a2681ade 100644 --- a/projects/TG-PHY200004.yaml +++ b/projects/TG-PHY200004.yaml @@ -7,3 +7,4 @@ ID: '751' Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/TG-PHY210083.yaml b/projects/TG-PHY210083.yaml index 2598feb85..936dd2fed 100644 --- a/projects/TG-PHY210083.yaml +++ b/projects/TG-PHY210083.yaml @@ -8,3 +8,4 @@ PIName: Senthil S. Vel Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/jxj9y1j53ii6' diff --git a/projects/TG-PHY210092.yaml b/projects/TG-PHY210092.yaml index 95c832bcc..8a82f953b 100644 --- a/projects/TG-PHY210092.yaml +++ b/projects/TG-PHY210092.yaml @@ -7,3 +7,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/yaw5atxcrn55' diff --git a/projects/TG-PHY210094.yaml b/projects/TG-PHY210094.yaml index bf24f5201..9162131b0 100644 --- a/projects/TG-PHY210094.yaml +++ b/projects/TG-PHY210094.yaml @@ -8,3 +8,4 @@ PIName: Peter Hirschfeld Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/84k5udeuw65m' diff --git a/projects/TG-PHY220009.yaml b/projects/TG-PHY220009.yaml index 1dff40c6e..b85a1586c 100644 --- a/projects/TG-PHY220009.yaml +++ b/projects/TG-PHY220009.yaml @@ -7,3 +7,4 @@ PIName: Donald L Koch Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0lcrhlbjpu9r' diff --git a/projects/TG-PHY220016.yaml b/projects/TG-PHY220016.yaml index 43bb4ca17..68e1d2a2e 100644 --- a/projects/TG-PHY220016.yaml +++ b/projects/TG-PHY220016.yaml @@ -6,3 +6,4 @@ PIName: Sajant Anand Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/7rhak0ujmsoe' diff --git a/projects/TG-SEE140006.yaml b/projects/TG-SEE140006.yaml index aa3a450e6..9ab63bb3f 100644 --- a/projects/TG-SEE140006.yaml +++ b/projects/TG-SEE140006.yaml @@ -14,3 +14,4 @@ PIName: Sheila Kannappan Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/nhz3r9d0308l' diff --git a/projects/TG-SES090019.yaml b/projects/TG-SES090019.yaml index df2dbbe23..174df103c 100644 --- a/projects/TG-SES090019.yaml +++ b/projects/TG-SES090019.yaml @@ -44,3 +44,4 @@ PIName: Shaowen Wang Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/10izzs5e7v1r' diff --git a/projects/TG-STA110011S.yaml b/projects/TG-STA110011S.yaml index da4f1f6ee..047557107 100644 --- a/projects/TG-STA110011S.yaml +++ b/projects/TG-STA110011S.yaml @@ -7,3 +7,4 @@ PIName: Stephen McNally Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/hp8930spi37u' diff --git a/projects/TG-STA110014S.yaml b/projects/TG-STA110014S.yaml index 000050c3a..040449e98 100644 --- a/projects/TG-STA110014S.yaml +++ b/projects/TG-STA110014S.yaml @@ -7,3 +7,4 @@ PIName: Nancy Wilkins-Diehr Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/TG-TRA090005.yaml b/projects/TG-TRA090005.yaml index 476ff6698..b4cefd0aa 100644 --- a/projects/TG-TRA090005.yaml +++ b/projects/TG-TRA090005.yaml @@ -7,3 +7,4 @@ PIName: Michelle Johnson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/TG-TRA100004.yaml b/projects/TG-TRA100004.yaml index 7f2e85abf..2031ee5f8 100644 --- a/projects/TG-TRA100004.yaml +++ b/projects/TG-TRA100004.yaml @@ -7,3 +7,4 @@ PIName: Andrew Ruether Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/a9u068qpwh85' diff --git a/projects/TG-TRA110013.yaml b/projects/TG-TRA110013.yaml index c861e1c36..74c1db1f0 100644 --- a/projects/TG-TRA110013.yaml +++ b/projects/TG-TRA110013.yaml @@ -9,3 +9,4 @@ PIName: Hadrian Djohari Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/7kqlt19a4h39' diff --git a/projects/TG-TRA120004.yaml b/projects/TG-TRA120004.yaml index d1fb79a96..312f975b5 100644 --- a/projects/TG-TRA120004.yaml +++ b/projects/TG-TRA120004.yaml @@ -8,3 +8,4 @@ PIName: Rob Lane Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/avy4x5r4jsrw' diff --git a/projects/TG-TRA120012.yaml b/projects/TG-TRA120012.yaml index a40efc068..94fbe9c23 100644 --- a/projects/TG-TRA120012.yaml +++ b/projects/TG-TRA120012.yaml @@ -7,3 +7,4 @@ PIName: Tajendra Vir Singh Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4vhk41w4vvn6' diff --git a/projects/TG-TRA120014.yaml b/projects/TG-TRA120014.yaml index 433fd4fe3..3cffac3ba 100644 --- a/projects/TG-TRA120014.yaml +++ b/projects/TG-TRA120014.yaml @@ -8,3 +8,4 @@ PIName: Pol Llovet Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/0budavib8vhh' diff --git a/projects/TG-TRA120031.yaml b/projects/TG-TRA120031.yaml index ad17bd30e..6941b2db6 100644 --- a/projects/TG-TRA120031.yaml +++ b/projects/TG-TRA120031.yaml @@ -1,11 +1,12 @@ Description: Campus Champions Renewal -Department: Mathematics +Department: Mathematics FieldOfScience: Advanced Scientific Computing Organization: Louisiana School for Math, Science, and the Arts -PIName: John Burkman +PIName: John Burkman ID: '645' Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: "https://osg-htc.org/iid/trggbvycsbve" diff --git a/projects/TG-TRA120041.yaml b/projects/TG-TRA120041.yaml index dd8f179a9..cb1cf830b 100644 --- a/projects/TG-TRA120041.yaml +++ b/projects/TG-TRA120041.yaml @@ -7,3 +7,4 @@ PIName: Hanning Chen Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/67icxo2r0nw7' diff --git a/projects/TG-TRA130003.yaml b/projects/TG-TRA130003.yaml index 438d409a4..ada341ac2 100644 --- a/projects/TG-TRA130003.yaml +++ b/projects/TG-TRA130003.yaml @@ -9,3 +9,4 @@ ID: '646' Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/vtcuoa0mgv9x' diff --git a/projects/TG-TRA130007.yaml b/projects/TG-TRA130007.yaml index 6bb2e99e0..8885cd399 100644 --- a/projects/TG-TRA130007.yaml +++ b/projects/TG-TRA130007.yaml @@ -8,3 +8,4 @@ PIName: David Monismith Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/iehnhhh561io' diff --git a/projects/TG-TRA130011.yaml b/projects/TG-TRA130011.yaml index 031d91b76..aa150ac02 100644 --- a/projects/TG-TRA130011.yaml +++ b/projects/TG-TRA130011.yaml @@ -11,3 +11,4 @@ PIName: John Chrispell Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/ekm8sdum58z7' diff --git a/projects/TG-TRA130030.yaml b/projects/TG-TRA130030.yaml index 77a89dae9..e10371015 100644 --- a/projects/TG-TRA130030.yaml +++ b/projects/TG-TRA130030.yaml @@ -8,3 +8,4 @@ PIName: Neranjan Edirisinghe Pathirannehelage Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/ybl3snr9pbs1' diff --git a/projects/TG-TRA140029.yaml b/projects/TG-TRA140029.yaml index 57126cf0c..497c79fdc 100644 --- a/projects/TG-TRA140029.yaml +++ b/projects/TG-TRA140029.yaml @@ -9,3 +9,4 @@ PIName: Scott Hampton Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/mavkovkq2s0l' diff --git a/projects/TG-TRA140036.yaml b/projects/TG-TRA140036.yaml index 0642601ea..5fd5facd4 100644 --- a/projects/TG-TRA140036.yaml +++ b/projects/TG-TRA140036.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/apzl1q10g59m' diff --git a/projects/TG-TRA140043.yaml b/projects/TG-TRA140043.yaml index 7b7bc8fa8..f6b29d400 100644 --- a/projects/TG-TRA140043.yaml +++ b/projects/TG-TRA140043.yaml @@ -7,3 +7,4 @@ PIName: Igor Yakushin Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/f1tlj6c19ppg' diff --git a/projects/TG-TRA150015.yaml b/projects/TG-TRA150015.yaml index f120666b1..7d61ae777 100644 --- a/projects/TG-TRA150015.yaml +++ b/projects/TG-TRA150015.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/p3nn2sljiwwl' diff --git a/projects/TG-TRA150018.yaml b/projects/TG-TRA150018.yaml index fae612f37..63b7c5340 100644 --- a/projects/TG-TRA150018.yaml +++ b/projects/TG-TRA150018.yaml @@ -8,3 +8,4 @@ PIName: Stephen Wolbers Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/h0s7lk6vj9dn' diff --git a/projects/TG-TRA160027.yaml b/projects/TG-TRA160027.yaml index 9488baad4..5bb8919b9 100644 --- a/projects/TG-TRA160027.yaml +++ b/projects/TG-TRA160027.yaml @@ -7,3 +7,4 @@ ID: '724' Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/uws6kivcttuc' diff --git a/projects/TG-TRA170047.yaml b/projects/TG-TRA170047.yaml index 327f56506..3b7d01a9b 100644 --- a/projects/TG-TRA170047.yaml +++ b/projects/TG-TRA170047.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/der850qlvoxm' diff --git a/projects/TG-TRA180011.yaml b/projects/TG-TRA180011.yaml index ddad08fa5..2302368d8 100644 --- a/projects/TG-TRA180011.yaml +++ b/projects/TG-TRA180011.yaml @@ -15,3 +15,4 @@ PIName: Anita Schwartz Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/j2iu11x3iayo' diff --git a/projects/TG-TRA180032.yaml b/projects/TG-TRA180032.yaml index 9199b8791..64d6ab0b1 100644 --- a/projects/TG-TRA180032.yaml +++ b/projects/TG-TRA180032.yaml @@ -11,3 +11,4 @@ Sponsor: CampusGrid: Name: OSG-XSEDE +InstitutionID: 'https://osg-htc.org/iid/p3nn2sljiwwl' diff --git a/projects/TG-TRA210040.yaml b/projects/TG-TRA210040.yaml index 777cb3d4b..7c63246f4 100644 --- a/projects/TG-TRA210040.yaml +++ b/projects/TG-TRA210040.yaml @@ -9,3 +9,4 @@ PIName: Baowei Liu Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v3s5cj6tgrvz' diff --git a/projects/TG-TRA220011.yaml b/projects/TG-TRA220011.yaml index 35977dcf5..e2363b5a7 100644 --- a/projects/TG-TRA220011.yaml +++ b/projects/TG-TRA220011.yaml @@ -7,3 +7,4 @@ PIName: Alexander Pacheco Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zu72yws3nzeo' diff --git a/projects/TG-TRA220014.yaml b/projects/TG-TRA220014.yaml index 07d35ab10..8790bbba2 100644 --- a/projects/TG-TRA220014.yaml +++ b/projects/TG-TRA220014.yaml @@ -12,3 +12,4 @@ PIName: Nathan Weeks Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/04zshkcip94w' diff --git a/projects/TG-TRA220017.yaml b/projects/TG-TRA220017.yaml index 1cefccfe9..ac7771de0 100644 --- a/projects/TG-TRA220017.yaml +++ b/projects/TG-TRA220017.yaml @@ -7,3 +7,4 @@ PIName: Bill Conn Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/it45nx81xgfl' diff --git a/projects/TNTTech_ITS.yaml b/projects/TNTTech_ITS.yaml index bde72f459..fe2b4ff49 100644 --- a/projects/TNTTech_ITS.yaml +++ b/projects/TNTTech_ITS.yaml @@ -11,3 +11,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ttqvi8xg5x2g' diff --git a/projects/TPOT.yaml b/projects/TPOT.yaml index 36c3f1ad2..a2fb6546d 100644 --- a/projects/TPOT.yaml +++ b/projects/TPOT.yaml @@ -9,3 +9,4 @@ PIName: Jason H. Moore Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nv2rjrft01gg' diff --git a/projects/TRNG.yaml b/projects/TRNG.yaml index e80fe8d70..660125a35 100644 --- a/projects/TRNG.yaml +++ b/projects/TRNG.yaml @@ -7,3 +7,4 @@ PIName: Asia Aljahdali Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0yddmgnh2xl5' diff --git a/projects/Teamcore.yaml b/projects/Teamcore.yaml index 4a60f5f62..4e650b5c5 100644 --- a/projects/Teamcore.yaml +++ b/projects/Teamcore.yaml @@ -9,3 +9,4 @@ PIName: Amulya Yadav Sponsor: CampusGrid: Name: ISI +InstitutionID: 'https://osg-htc.org/iid/6edduwj65dlr' diff --git a/projects/TechEX15.yaml b/projects/TechEX15.yaml index 67a9d165e..5252d1bc8 100644 --- a/projects/TechEX15.yaml +++ b/projects/TechEX15.yaml @@ -8,3 +8,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/TelescopeArray.yaml b/projects/TelescopeArray.yaml index 9abccb69b..083d462dc 100644 --- a/projects/TelescopeArray.yaml +++ b/projects/TelescopeArray.yaml @@ -10,3 +10,4 @@ PIName: Gordon Thomson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/iwlonrroeaal' diff --git a/projects/TexasAM_Alsmadi.yaml b/projects/TexasAM_Alsmadi.yaml index de543f57a..85d288e20 100644 --- a/projects/TexasAM_Alsmadi.yaml +++ b/projects/TexasAM_Alsmadi.yaml @@ -7,3 +7,4 @@ PIName: Izzat Alsmadi Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8wqbbz4i2cma' diff --git a/projects/TexasAM_Fang.yaml b/projects/TexasAM_Fang.yaml index 1cc1f05b5..62afa2846 100644 --- a/projects/TexasAM_Fang.yaml +++ b/projects/TexasAM_Fang.yaml @@ -7,3 +7,4 @@ PIName: Zheng Fang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8wqbbz4i2cma' diff --git a/projects/TexasAM_Sun.yaml b/projects/TexasAM_Sun.yaml index 9e27f56a4..3ebfb5bbf 100644 --- a/projects/TexasAM_Sun.yaml +++ b/projects/TexasAM_Sun.yaml @@ -9,3 +9,4 @@ ID: '747' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8wqbbz4i2cma' diff --git a/projects/TexasTech_Corsi.yaml b/projects/TexasTech_Corsi.yaml index 80c65b601..b6e95c7a4 100644 --- a/projects/TexasTech_Corsi.yaml +++ b/projects/TexasTech_Corsi.yaml @@ -9,3 +9,4 @@ ID: '836' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/dm49jc7i86zx' diff --git a/projects/TextLab.yaml b/projects/TextLab.yaml index 594f4efb4..716adb7a1 100644 --- a/projects/TextLab.yaml +++ b/projects/TextLab.yaml @@ -7,3 +7,4 @@ PIName: James Evans Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/Training-ACE-NIAID.yaml b/projects/Training-ACE-NIAID.yaml index 1f8626084..417993c5f 100644 --- a/projects/Training-ACE-NIAID.yaml +++ b/projects/Training-ACE-NIAID.yaml @@ -7,3 +7,4 @@ PIName: Mariam Quiñones Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/451cgt72wj62' diff --git a/projects/TrappedOrbits.yaml b/projects/TrappedOrbits.yaml index 61c92e800..d49f4a266 100644 --- a/projects/TrappedOrbits.yaml +++ b/projects/TrappedOrbits.yaml @@ -9,3 +9,4 @@ PIName: Kathryne J Daniel Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/wrdwsan7bxsn' diff --git a/projects/Tufts_Hempstead.yaml b/projects/Tufts_Hempstead.yaml index bd70cdddf..a182ac0de 100644 --- a/projects/Tufts_Hempstead.yaml +++ b/projects/Tufts_Hempstead.yaml @@ -9,3 +9,4 @@ ID: 693 Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/vtcuoa0mgv9x' diff --git a/projects/Tufts_Levin.yaml b/projects/Tufts_Levin.yaml index c51ac0aa4..ca788f0a6 100644 --- a/projects/Tufts_Levin.yaml +++ b/projects/Tufts_Levin.yaml @@ -10,3 +10,4 @@ ID: '810' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/vtcuoa0mgv9x' diff --git a/projects/Tutorial-PEARC20.yaml b/projects/Tutorial-PEARC20.yaml index 2ddd5f15a..0171df5b5 100644 --- a/projects/Tutorial-PEARC20.yaml +++ b/projects/Tutorial-PEARC20.yaml @@ -9,3 +9,4 @@ ID: '710' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8hgx4a4ptpt9' diff --git a/projects/Tutorial-PEARC21.yaml b/projects/Tutorial-PEARC21.yaml index 6a9ff8e54..d320f731b 100644 --- a/projects/Tutorial-PEARC21.yaml +++ b/projects/Tutorial-PEARC21.yaml @@ -9,3 +9,4 @@ ID: '811' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8hgx4a4ptpt9' diff --git a/projects/U5Mortality.yaml b/projects/U5Mortality.yaml index f6db7547f..725a7c6ce 100644 --- a/projects/U5Mortality.yaml +++ b/projects/U5Mortality.yaml @@ -11,3 +11,4 @@ PIName: Shripad Tuljapurkar Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/UAB_ResearchComputing.yaml b/projects/UAB_ResearchComputing.yaml index 1cc701897..883332f65 100644 --- a/projects/UAB_ResearchComputing.yaml +++ b/projects/UAB_ResearchComputing.yaml @@ -8,3 +8,4 @@ PIName: Ralph Zottola Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7hv1hsn6xv15' diff --git a/projects/UAB_Thyme.yaml b/projects/UAB_Thyme.yaml index c829f5933..4b9465458 100644 --- a/projects/UAB_Thyme.yaml +++ b/projects/UAB_Thyme.yaml @@ -7,3 +7,4 @@ PIName: Summer Thyme Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7hv1hsn6xv15' diff --git a/projects/UAB_Worthey.yaml b/projects/UAB_Worthey.yaml index 1d53731e9..162b0d54d 100644 --- a/projects/UAB_Worthey.yaml +++ b/projects/UAB_Worthey.yaml @@ -8,3 +8,4 @@ PIName: Elizabeth Worthey Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7hv1hsn6xv15' diff --git a/projects/UADataAnalytics.yaml b/projects/UADataAnalytics.yaml index 73d14fe8b..7c9dce580 100644 --- a/projects/UADataAnalytics.yaml +++ b/projects/UADataAnalytics.yaml @@ -7,3 +7,4 @@ PIName: Nirav Merchant Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/UAF_Aschwanden.yaml b/projects/UAF_Aschwanden.yaml index 1ed1a511e..e45ab8c86 100644 --- a/projects/UAF_Aschwanden.yaml +++ b/projects/UAF_Aschwanden.yaml @@ -8,3 +8,4 @@ PIName: Andy Aschwanden Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/85bj3tcfwa1z' diff --git a/projects/UALR_EAC.yaml b/projects/UALR_EAC.yaml index 3f03d268c..83917bb9f 100644 --- a/projects/UALR_EAC.yaml +++ b/projects/UALR_EAC.yaml @@ -7,3 +7,4 @@ PIName: Jan Springer Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/39lbghshs28k' diff --git a/projects/UALR_Goodarzi.yaml b/projects/UALR_Goodarzi.yaml index 2d58776bb..a65c546c6 100644 --- a/projects/UALR_Goodarzi.yaml +++ b/projects/UALR_Goodarzi.yaml @@ -2,8 +2,9 @@ Description: > focus on drug discovery for infection and cancer, leveraging computational methods. Specifically, I utilize computation for analyzing protein-protein interactions, protein-ligand interactions, and multivariate analysis. This approach aids in identifying potential drug targets and understanding molecular mechanisms. - Overall, my work integrates computational tools to advance drug discovery efforts against infection and cancer. + Overall, my work integrates computational tools to advance drug discovery efforts against infection and cancer. Department: Chemistry -FieldOfScience: Biochemistry +FieldOfScience: Biochemistry Organization: University of Arkansas at Little Rock PIName: Mohammad Goodarzi +InstitutionID: 'https://osg-htc.org/iid/39lbghshs28k' diff --git a/projects/UALR_ITS.yaml b/projects/UALR_ITS.yaml index a5e842902..9751949b0 100644 --- a/projects/UALR_ITS.yaml +++ b/projects/UALR_ITS.yaml @@ -7,3 +7,4 @@ PIName: Timothy Stoddard Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/39lbghshs28k' diff --git a/projects/UA_Kocot.yaml b/projects/UA_Kocot.yaml index 98eae0cac..80f2cc849 100644 --- a/projects/UA_Kocot.yaml +++ b/projects/UA_Kocot.yaml @@ -3,3 +3,4 @@ Department: Department of Biological Sciences FieldOfScience: Biological and Biomedical Sciences Organization: University of Alabama PIName: Kevin Kocot +InstitutionID: "https://osg-htc.org/iid/h3mnbxmdwx24" diff --git a/projects/UA_OIT.yaml b/projects/UA_OIT.yaml index 5410422b4..897f2b669 100644 --- a/projects/UA_OIT.yaml +++ b/projects/UA_OIT.yaml @@ -11,3 +11,4 @@ PIName: Donald Jay Cervino Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/h3mnbxmdwx24' diff --git a/projects/UC-Staff.yaml b/projects/UC-Staff.yaml index 572265463..0be4a0162 100644 --- a/projects/UC-Staff.yaml +++ b/projects/UC-Staff.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/UCAnschutz_Langner.yaml b/projects/UCAnschutz_Langner.yaml index 5f87feec1..dbf8fc3e4 100644 --- a/projects/UCAnschutz_Langner.yaml +++ b/projects/UCAnschutz_Langner.yaml @@ -9,3 +9,4 @@ ID: '593' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ca3jfb3f8sv3' diff --git a/projects/UCBerkeley_Altman.yaml b/projects/UCBerkeley_Altman.yaml index 74b12422d..00ecce38a 100644 --- a/projects/UCBerkeley_Altman.yaml +++ b/projects/UCBerkeley_Altman.yaml @@ -7,3 +7,4 @@ PIName: Ehud Altman Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7rhak0ujmsoe' diff --git a/projects/UCBerkeley_Zaletel.yaml b/projects/UCBerkeley_Zaletel.yaml index cab199c15..64437bf5a 100644 --- a/projects/UCBerkeley_Zaletel.yaml +++ b/projects/UCBerkeley_Zaletel.yaml @@ -12,3 +12,4 @@ PIName: Mike Zaletel Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7rhak0ujmsoe' diff --git a/projects/UCDavis_Leveau.yaml b/projects/UCDavis_Leveau.yaml index 2cf4d4d15..32ee1dc5e 100644 --- a/projects/UCDavis_Leveau.yaml +++ b/projects/UCDavis_Leveau.yaml @@ -7,3 +7,4 @@ PIName: Johan Leveau Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f62wuiqfjmxm' diff --git a/projects/UCDavis_Pickett.yaml b/projects/UCDavis_Pickett.yaml index 89a566f09..cccf6dc82 100644 --- a/projects/UCDavis_Pickett.yaml +++ b/projects/UCDavis_Pickett.yaml @@ -9,3 +9,4 @@ ID: '704' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f62wuiqfjmxm' diff --git a/projects/UCDavis_Yarov-Yarovoy.yaml b/projects/UCDavis_Yarov-Yarovoy.yaml index e6d40f15a..f2e24dacd 100644 --- a/projects/UCDavis_Yarov-Yarovoy.yaml +++ b/projects/UCDavis_Yarov-Yarovoy.yaml @@ -7,3 +7,4 @@ PIName: Vladimir Yarov-Yarovoy Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/f62wuiqfjmxm' diff --git a/projects/UCDenver_Butler.yaml b/projects/UCDenver_Butler.yaml index 3c99daf34..57b268caa 100644 --- a/projects/UCDenver_Butler.yaml +++ b/projects/UCDenver_Butler.yaml @@ -9,3 +9,4 @@ ID: '664' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/m27szfeh7gut' diff --git a/projects/UCDenver_Farguell.yaml b/projects/UCDenver_Farguell.yaml index 3d00bf8d1..9a61f6a83 100644 --- a/projects/UCDenver_Farguell.yaml +++ b/projects/UCDenver_Farguell.yaml @@ -9,3 +9,4 @@ ID: '661' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/m27szfeh7gut' diff --git a/projects/UCDenver_Gaffney.yaml b/projects/UCDenver_Gaffney.yaml index 4f0fe46d7..198cabe02 100644 --- a/projects/UCDenver_Gaffney.yaml +++ b/projects/UCDenver_Gaffney.yaml @@ -7,3 +7,4 @@ PIName: Brecca Gaffney Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/m27szfeh7gut' diff --git a/projects/UCDenver_Hartke.yaml b/projects/UCDenver_Hartke.yaml index 38982d58d..8fbe73ec6 100644 --- a/projects/UCDenver_Hartke.yaml +++ b/projects/UCDenver_Hartke.yaml @@ -8,3 +8,4 @@ PIName: Stephen Hartke Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/m27szfeh7gut' diff --git a/projects/UCDenver_Kechris.yaml b/projects/UCDenver_Kechris.yaml index 638b83624..692e9107e 100644 --- a/projects/UCDenver_Kechris.yaml +++ b/projects/UCDenver_Kechris.yaml @@ -9,3 +9,4 @@ ID: '801' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/m27szfeh7gut' diff --git a/projects/UCDenver_Mandel.yaml b/projects/UCDenver_Mandel.yaml index 34fe63a9d..d47caf6a1 100644 --- a/projects/UCDenver_Mandel.yaml +++ b/projects/UCDenver_Mandel.yaml @@ -9,3 +9,4 @@ ID: '616' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/m27szfeh7gut' diff --git a/projects/UCF_Bennett.yaml b/projects/UCF_Bennett.yaml index 62d76eca9..df9d97fef 100644 --- a/projects/UCF_Bennett.yaml +++ b/projects/UCF_Bennett.yaml @@ -9,3 +9,4 @@ ID: '596' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ozb6tv0up0g3' diff --git a/projects/UCF_GRIT.yaml b/projects/UCF_GRIT.yaml index 1383c8e54..344aee104 100644 --- a/projects/UCF_GRIT.yaml +++ b/projects/UCF_GRIT.yaml @@ -9,3 +9,4 @@ ID: '622' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ozb6tv0up0g3' diff --git a/projects/UCF_IT.yaml b/projects/UCF_IT.yaml index b00496328..e41b21c5d 100644 --- a/projects/UCF_IT.yaml +++ b/projects/UCF_IT.yaml @@ -10,3 +10,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ozb6tv0up0g3' diff --git a/projects/UCF_Khan.yaml b/projects/UCF_Khan.yaml index 97b5fd6b2..4e0eeb28a 100644 --- a/projects/UCF_Khan.yaml +++ b/projects/UCF_Khan.yaml @@ -8,3 +8,4 @@ Department: Research Cyberinfrastructure FieldOfScience: Mathematics and Statistics Organization: University of Central Florida PIName: Fahad Khan +InstitutionID: 'https://osg-htc.org/iid/ozb6tv0up0g3' diff --git a/projects/UCF_Wiegand.yaml b/projects/UCF_Wiegand.yaml index 7d099849a..1b7aa2616 100644 --- a/projects/UCF_Wiegand.yaml +++ b/projects/UCF_Wiegand.yaml @@ -9,3 +9,4 @@ ID: '617' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ozb6tv0up0g3' diff --git a/projects/UCF_Zou.yaml b/projects/UCF_Zou.yaml index ac7decbe3..6c54a89c6 100644 --- a/projects/UCF_Zou.yaml +++ b/projects/UCF_Zou.yaml @@ -7,3 +7,4 @@ PIName: Shengli Zou Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ozb6tv0up0g3' diff --git a/projects/UCHC_Mendes.yaml b/projects/UCHC_Mendes.yaml index a18502cb6..ff0c2193f 100644 --- a/projects/UCHC_Mendes.yaml +++ b/projects/UCHC_Mendes.yaml @@ -9,3 +9,4 @@ ID: '842' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/z1cema4pdiep' diff --git a/projects/UCIAtlas.yaml b/projects/UCIAtlas.yaml index 515c98241..8ade482ac 100644 --- a/projects/UCIAtlas.yaml +++ b/projects/UCIAtlas.yaml @@ -19,3 +19,4 @@ Sponsor: VirtualOrganization: ##### Name is the name of the VO that sponsored the project Name: ATLAS +InstitutionID: 'https://osg-htc.org/iid/ss614ab1u5qd' diff --git a/projects/UCI_Jeliazkov.yaml b/projects/UCI_Jeliazkov.yaml index 64884f229..90c53dea5 100644 --- a/projects/UCI_Jeliazkov.yaml +++ b/projects/UCI_Jeliazkov.yaml @@ -9,3 +9,4 @@ ID: '577' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ss614ab1u5qd' diff --git a/projects/UCI_McnLab.yaml b/projects/UCI_McnLab.yaml index 60f1fbfcb..993cafc07 100644 --- a/projects/UCI_McnLab.yaml +++ b/projects/UCI_McnLab.yaml @@ -9,3 +9,4 @@ ID: '591' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ss614ab1u5qd' diff --git a/projects/UCI_Sheng.yaml b/projects/UCI_Sheng.yaml index d9ead59ff..49e61ad6e 100644 --- a/projects/UCI_Sheng.yaml +++ b/projects/UCI_Sheng.yaml @@ -4,3 +4,4 @@ Description: 'Research on the US housing market and transactions with the aim of FieldOfScience: Economics Organization: University of California, Irvine PIName: Jinfei Sheng +InstitutionID: 'https://osg-htc.org/iid/ss614ab1u5qd' diff --git a/projects/UCLA_Huang.yaml b/projects/UCLA_Huang.yaml index 396e893ff..9bd0417d4 100644 --- a/projects/UCLA_Huang.yaml +++ b/projects/UCLA_Huang.yaml @@ -9,3 +9,4 @@ ID: '731' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/UCLA_OARC.yaml b/projects/UCLA_OARC.yaml index 3321e252e..8950811ab 100644 --- a/projects/UCLA_OARC.yaml +++ b/projects/UCLA_OARC.yaml @@ -7,3 +7,4 @@ PIName: Tajendra Vir Singh Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4vhk41w4vvn6' diff --git a/projects/UCLA_Zhu.yaml b/projects/UCLA_Zhu.yaml index 0b96d8d50..9662dd043 100644 --- a/projects/UCLA_Zhu.yaml +++ b/projects/UCLA_Zhu.yaml @@ -9,3 +9,4 @@ ID: '628' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4vhk41w4vvn6' diff --git a/projects/UCMerced_Han.yaml b/projects/UCMerced_Han.yaml index c153998f6..6649ef938 100644 --- a/projects/UCMerced_Han.yaml +++ b/projects/UCMerced_Han.yaml @@ -9,3 +9,4 @@ ID: '597' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/x5v4n3xgq7lu' diff --git a/projects/UCR_ITSStaff.yaml b/projects/UCR_ITSStaff.yaml index 3e0572ede..75f6df131 100644 --- a/projects/UCR_ITSStaff.yaml +++ b/projects/UCR_ITSStaff.yaml @@ -9,3 +9,4 @@ ID: '713' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zy99b9jjoqpb' diff --git a/projects/UCSC_Williams.yaml b/projects/UCSC_Williams.yaml index 64ca13b3f..8506b4bd0 100644 --- a/projects/UCSC_Williams.yaml +++ b/projects/UCSC_Williams.yaml @@ -7,3 +7,4 @@ PIName: David Williams Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/n6cai04882ca' diff --git a/projects/UCSDEngEarthquake.yaml b/projects/UCSDEngEarthquake.yaml index 9707f3664..8480ac673 100644 --- a/projects/UCSDEngEarthquake.yaml +++ b/projects/UCSDEngEarthquake.yaml @@ -7,3 +7,4 @@ PIName: Frank Wuerthwein Sponsor: CampusGrid: Name: UCSD +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSDPhysAstroExp.yaml b/projects/UCSDPhysAstroExp.yaml index ee761e58f..5a37d05b7 100644 --- a/projects/UCSDPhysAstroExp.yaml +++ b/projects/UCSDPhysAstroExp.yaml @@ -7,3 +7,4 @@ PIName: Frank Wuerthwein Sponsor: CampusGrid: Name: UCSD +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSDPhysAstroTheo.yaml b/projects/UCSDPhysAstroTheo.yaml index eac9a51f1..0c6965ad6 100644 --- a/projects/UCSDPhysAstroTheo.yaml +++ b/projects/UCSDPhysAstroTheo.yaml @@ -7,3 +7,4 @@ PIName: Frank Wuerthwein Sponsor: CampusGrid: Name: UCSD +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSDPhysBio.yaml b/projects/UCSDPhysBio.yaml index 6f5ac964d..1a117df84 100644 --- a/projects/UCSDPhysBio.yaml +++ b/projects/UCSDPhysBio.yaml @@ -7,3 +7,4 @@ PIName: Frank Wuerthwein Sponsor: CampusGrid: Name: UCSD +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSDPhysPart.yaml b/projects/UCSDPhysPart.yaml index 6243f0a63..e0b5abc05 100644 --- a/projects/UCSDPhysPart.yaml +++ b/projects/UCSDPhysPart.yaml @@ -7,3 +7,4 @@ PIName: Frank Wuerthwein Sponsor: CampusGrid: Name: UCSD +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Arovas.yaml b/projects/UCSD_Arovas.yaml index 2eb7c7152..89c2693fd 100644 --- a/projects/UCSD_Arovas.yaml +++ b/projects/UCSD_Arovas.yaml @@ -9,3 +9,4 @@ ID: '732' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Bradic.yaml b/projects/UCSD_Bradic.yaml index 34bcd677c..fb84b3eea 100644 --- a/projects/UCSD_Bradic.yaml +++ b/projects/UCSD_Bradic.yaml @@ -6,3 +6,4 @@ Description: > FieldOfScience: Mathematical Sciences Organization: University of California, San Diego PIName: Jelena Bradic +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Du.yaml b/projects/UCSD_Du.yaml index fdd4256b4..b5283bac9 100644 --- a/projects/UCSD_Du.yaml +++ b/projects/UCSD_Du.yaml @@ -9,3 +9,4 @@ Description: Our research group focuses on developing quantum sensing and imagin FieldOfScience: Physics Organization: University of California, San Diego PIName: Chunhui Du +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Duarte.yaml b/projects/UCSD_Duarte.yaml index aa393804e..47519fb0a 100644 --- a/projects/UCSD_Duarte.yaml +++ b/projects/UCSD_Duarte.yaml @@ -7,3 +7,4 @@ PIName: Javier Duarte Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Elman.yaml b/projects/UCSD_Elman.yaml index bc4393bc0..42668dbb6 100644 --- a/projects/UCSD_Elman.yaml +++ b/projects/UCSD_Elman.yaml @@ -7,3 +7,4 @@ PIName: Jeremy Elman Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Fricker.yaml b/projects/UCSD_Fricker.yaml index 7e43bbe88..d67c5c264 100644 --- a/projects/UCSD_Fricker.yaml +++ b/projects/UCSD_Fricker.yaml @@ -7,3 +7,4 @@ PIName: Helen Fricker Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_George.yaml b/projects/UCSD_George.yaml index 9cd53d45d..ac913f1a0 100644 --- a/projects/UCSD_George.yaml +++ b/projects/UCSD_George.yaml @@ -5,3 +5,4 @@ Department: Psychiatry FieldOfScience: Health Sciences Organization: University of California, San Diego PIName: Olivier George +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Gilson.yaml b/projects/UCSD_Gilson.yaml index f0a9f766a..51112fd99 100644 --- a/projects/UCSD_Gilson.yaml +++ b/projects/UCSD_Gilson.yaml @@ -7,3 +7,4 @@ PIName: Michael Gilson Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Goetz.yaml b/projects/UCSD_Goetz.yaml index 9b8a18e12..400c1ce05 100644 --- a/projects/UCSD_Goetz.yaml +++ b/projects/UCSD_Goetz.yaml @@ -15,3 +15,4 @@ PIName: Andreas Goetz Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Grover.yaml b/projects/UCSD_Grover.yaml index 8d93e97ab..2929c4afe 100644 --- a/projects/UCSD_Grover.yaml +++ b/projects/UCSD_Grover.yaml @@ -7,3 +7,4 @@ PIName: Tarun Grover Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Guiang.yaml b/projects/UCSD_Guiang.yaml index e4677b9fa..a97ce864f 100644 --- a/projects/UCSD_Guiang.yaml +++ b/projects/UCSD_Guiang.yaml @@ -7,3 +7,4 @@ PIName: Jonathan Guiang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Hsiao.yaml b/projects/UCSD_Hsiao.yaml index f8a9261b0..117919d6b 100644 --- a/projects/UCSD_Hsiao.yaml +++ b/projects/UCSD_Hsiao.yaml @@ -11,3 +11,4 @@ ID: '752' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Kandes.yaml b/projects/UCSD_Kandes.yaml index 9e753d387..d2c866c33 100644 --- a/projects/UCSD_Kandes.yaml +++ b/projects/UCSD_Kandes.yaml @@ -9,3 +9,4 @@ ID: '700' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Libgober.yaml b/projects/UCSD_Libgober.yaml index e7a773853..cee885b22 100644 --- a/projects/UCSD_Libgober.yaml +++ b/projects/UCSD_Libgober.yaml @@ -9,3 +9,4 @@ ID: '769' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_McGreevy.yaml b/projects/UCSD_McGreevy.yaml index 5998eb63a..8033b2484 100644 --- a/projects/UCSD_McGreevy.yaml +++ b/projects/UCSD_McGreevy.yaml @@ -7,3 +7,4 @@ PIName: John McGreevy Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Pa.yaml b/projects/UCSD_Pa.yaml index 773fa7b1c..2811baf0d 100644 --- a/projects/UCSD_Pa.yaml +++ b/projects/UCSD_Pa.yaml @@ -8,3 +8,4 @@ PIName: Judy Pa Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Politis.yaml b/projects/UCSD_Politis.yaml index 82816665a..30b469279 100644 --- a/projects/UCSD_Politis.yaml +++ b/projects/UCSD_Politis.yaml @@ -9,3 +9,4 @@ Department: Department of Mathematics FieldOfScience: Mathematics and Statistics Organization: University of California, San Diego PIName: Dimitris N Politis +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Rao.yaml b/projects/UCSD_Rao.yaml index 0ff975ec6..c4b98cefb 100644 --- a/projects/UCSD_Rao.yaml +++ b/projects/UCSD_Rao.yaml @@ -5,3 +5,4 @@ Description: > FieldOfScience: Computer and Information Sciences Organization: University of California, San Diego PIName: Bhaskar Rao +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Rappel.yaml b/projects/UCSD_Rappel.yaml index 6ace77ad6..c02523275 100644 --- a/projects/UCSD_Rappel.yaml +++ b/projects/UCSD_Rappel.yaml @@ -9,3 +9,4 @@ ID: '636' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_ResearchIT.yaml b/projects/UCSD_ResearchIT.yaml index 3c255f54d..1052d0ddb 100644 --- a/projects/UCSD_ResearchIT.yaml +++ b/projects/UCSD_ResearchIT.yaml @@ -9,3 +9,4 @@ ID: '632' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Shah.yaml b/projects/UCSD_Shah.yaml index b51f4cc4e..62b4977d1 100644 --- a/projects/UCSD_Shah.yaml +++ b/projects/UCSD_Shah.yaml @@ -7,3 +7,4 @@ PIName: Nisarg Shah Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Wuerthwein_CMSUAF.yaml b/projects/UCSD_Wuerthwein_CMSUAF.yaml index b1449b418..f84d630d8 100644 --- a/projects/UCSD_Wuerthwein_CMSUAF.yaml +++ b/projects/UCSD_Wuerthwein_CMSUAF.yaml @@ -8,3 +8,4 @@ PIName: Frank Wuerthwein Sponsor: CampusGrid: Name: UCSD +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_Xu.yaml b/projects/UCSD_Xu.yaml index a7790962e..865f9a674 100644 --- a/projects/UCSD_Xu.yaml +++ b/projects/UCSD_Xu.yaml @@ -7,3 +7,4 @@ PIName: Ronghui (Lily) Xu Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSD_YZYou.yaml b/projects/UCSD_YZYou.yaml index de124c699..0e218a90c 100644 --- a/projects/UCSD_YZYou.yaml +++ b/projects/UCSD_YZYou.yaml @@ -9,3 +9,4 @@ ID: '579' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/UCSF_Manglik.yaml b/projects/UCSF_Manglik.yaml index d7eab418e..cfd352633 100644 --- a/projects/UCSF_Manglik.yaml +++ b/projects/UCSF_Manglik.yaml @@ -9,3 +9,4 @@ ID: '736' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7nlvlasx7q46' diff --git a/projects/UChicago-RCC.yaml b/projects/UChicago-RCC.yaml index b1dc9fb87..ff92ba947 100644 --- a/projects/UChicago-RCC.yaml +++ b/projects/UChicago-RCC.yaml @@ -8,3 +8,4 @@ PIName: Birali Runesha Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/UChicago_Barton.yaml b/projects/UChicago_Barton.yaml index acbc60f76..82616f7d8 100644 --- a/projects/UChicago_Barton.yaml +++ b/projects/UChicago_Barton.yaml @@ -9,3 +9,4 @@ ID: '662' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/UChicago_Jonas.yaml b/projects/UChicago_Jonas.yaml index 466d2e4f2..23a73deb6 100644 --- a/projects/UChicago_Jonas.yaml +++ b/projects/UChicago_Jonas.yaml @@ -9,3 +9,4 @@ ID: '786' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/UConn_Alpay.yaml b/projects/UConn_Alpay.yaml index 58c201b20..c29393321 100644 --- a/projects/UConn_Alpay.yaml +++ b/projects/UConn_Alpay.yaml @@ -7,3 +7,4 @@ Department: Materials Science and Engineering FieldOfScience: Materials Science Organization: University of Connecticut PIName: Pamir Alpay +InstitutionID: 'https://osg-htc.org/iid/eq81k8qpbcq9' diff --git a/projects/UConn_Le.yaml b/projects/UConn_Le.yaml index 3873f30f5..4706d276a 100644 --- a/projects/UConn_Le.yaml +++ b/projects/UConn_Le.yaml @@ -7,3 +7,4 @@ PIName: Thu Le Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/eq81k8qpbcq9' diff --git a/projects/UConn_Zhang.yaml b/projects/UConn_Zhang.yaml index e557269ca..2161c05c6 100644 --- a/projects/UConn_Zhang.yaml +++ b/projects/UConn_Zhang.yaml @@ -10,3 +10,4 @@ ID: '780' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/eq81k8qpbcq9' diff --git a/projects/UConn_Zhu.yaml b/projects/UConn_Zhu.yaml index ad0219221..6984d6bf2 100644 --- a/projects/UConn_Zhu.yaml +++ b/projects/UConn_Zhu.yaml @@ -9,3 +9,4 @@ PIName: Zhe Zhu Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/eq81k8qpbcq9' diff --git a/projects/UEdinburgh_DUNE.yaml b/projects/UEdinburgh_DUNE.yaml index 30ac87ab6..9835014cc 100644 --- a/projects/UEdinburgh_DUNE.yaml +++ b/projects/UEdinburgh_DUNE.yaml @@ -9,3 +9,4 @@ ID: '821' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/5s885xc1ooke' diff --git a/projects/UF_Hirschfeld.yaml b/projects/UF_Hirschfeld.yaml index bf24f5201..9162131b0 100644 --- a/projects/UF_Hirschfeld.yaml +++ b/projects/UF_Hirschfeld.yaml @@ -8,3 +8,4 @@ PIName: Peter Hirschfeld Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/84k5udeuw65m' diff --git a/projects/UF_Staff.yaml b/projects/UF_Staff.yaml index 22957fa6f..bb6b49866 100644 --- a/projects/UF_Staff.yaml +++ b/projects/UF_Staff.yaml @@ -9,3 +9,4 @@ ID: '729' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/84k5udeuw65m' diff --git a/projects/UF_Strother.yaml b/projects/UF_Strother.yaml index da4e54e36..9d717678e 100644 --- a/projects/UF_Strother.yaml +++ b/projects/UF_Strother.yaml @@ -8,3 +8,4 @@ Department: Whitney Laboratory for Marine Bioscience FieldOfScience: Neuroscience, biomechanics, microscopy Organization: University of Florida PIName: James Strother +InstitutionID: 'https://osg-htc.org/iid/84k5udeuw65m' diff --git a/projects/UHITSACI.yaml b/projects/UHITSACI.yaml index e14b09d55..ca0458d9b 100644 --- a/projects/UHITSACI.yaml +++ b/projects/UHITSACI.yaml @@ -7,3 +7,4 @@ PIName: Sean Cleveland Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/dsdkrs83f44q' diff --git a/projects/UIowa_Reno.yaml b/projects/UIowa_Reno.yaml index 8e6e823d2..a6e1e5c48 100644 --- a/projects/UIowa_Reno.yaml +++ b/projects/UIowa_Reno.yaml @@ -9,3 +9,4 @@ ID: '807' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2eafckbgu51c' diff --git a/projects/UIowa_Sahin.yaml b/projects/UIowa_Sahin.yaml index fd01bdd3a..474cf30e5 100644 --- a/projects/UIowa_Sahin.yaml +++ b/projects/UIowa_Sahin.yaml @@ -9,3 +9,4 @@ ID: '761' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2eafckbgu51c' diff --git a/projects/UIowa_Villarini.yaml b/projects/UIowa_Villarini.yaml index b8ee711c9..a9d8f40af 100644 --- a/projects/UIowa_Villarini.yaml +++ b/projects/UIowa_Villarini.yaml @@ -7,3 +7,4 @@ PIName: Gabriele Villarini Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2eafckbgu51c' diff --git a/projects/UMCES_Fitzpatrick.yaml b/projects/UMCES_Fitzpatrick.yaml index 03c004387..99161d5e3 100644 --- a/projects/UMCES_Fitzpatrick.yaml +++ b/projects/UMCES_Fitzpatrick.yaml @@ -9,3 +9,4 @@ ID: '787' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/hy2af2w9vmyk' diff --git a/projects/UMN_RF_Staff.yaml b/projects/UMN_RF_Staff.yaml index 1da44a060..5aba939e1 100644 --- a/projects/UMN_RF_Staff.yaml +++ b/projects/UMN_RF_Staff.yaml @@ -7,3 +7,4 @@ PIName: Charles Nguyen Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3chofmlz7p5r' diff --git a/projects/UMT_Warren.yaml b/projects/UMT_Warren.yaml index 007f61089..58de73bcf 100644 --- a/projects/UMT_Warren.yaml +++ b/projects/UMT_Warren.yaml @@ -7,3 +7,4 @@ PIName: Allen Warren Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/sdmbw89obfoi' diff --git a/projects/UMaine_Vel.yaml b/projects/UMaine_Vel.yaml index 2598feb85..936dd2fed 100644 --- a/projects/UMaine_Vel.yaml +++ b/projects/UMaine_Vel.yaml @@ -8,3 +8,4 @@ PIName: Senthil S. Vel Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/jxj9y1j53ii6' diff --git a/projects/UMassAmherst_Sloutsky.yaml b/projects/UMassAmherst_Sloutsky.yaml index 29cd05386..e25a83683 100644 --- a/projects/UMassAmherst_Sloutsky.yaml +++ b/projects/UMassAmherst_Sloutsky.yaml @@ -9,3 +9,4 @@ ID: '694' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/sqj1fi5b7fdj' diff --git a/projects/UMassLowell_Delhommelle.yaml b/projects/UMassLowell_Delhommelle.yaml index 65caf402c..e0ade2692 100644 --- a/projects/UMassLowell_Delhommelle.yaml +++ b/projects/UMassLowell_Delhommelle.yaml @@ -8,3 +8,4 @@ PIName: Jerome Delhommelle Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/w36omfloyrj2' diff --git a/projects/UMassLowell_Laycock.yaml b/projects/UMassLowell_Laycock.yaml index 0f19dd319..608946bfc 100644 --- a/projects/UMassLowell_Laycock.yaml +++ b/projects/UMassLowell_Laycock.yaml @@ -8,3 +8,4 @@ PIName: Silas G. T. Laycock Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/w36omfloyrj2' diff --git a/projects/UMich.yaml b/projects/UMich.yaml index 389ec9596..728c48cb3 100644 --- a/projects/UMich.yaml +++ b/projects/UMich.yaml @@ -8,3 +8,4 @@ PIName: Paul Wolberg Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/UMiss_Gupta.yaml b/projects/UMiss_Gupta.yaml index c7986c9ca..4b3c8b20b 100644 --- a/projects/UMiss_Gupta.yaml +++ b/projects/UMiss_Gupta.yaml @@ -4,3 +4,4 @@ Description: 'We are studying the evolution of binary black holes and it would b FieldOfScience: Astronomy and Astrophysics Organization: University of Mississippi PIName: Anuradha Gupta +InstitutionID: 'https://osg-htc.org/iid/bigpgrrmxblz' diff --git a/projects/UMiss_Stein.yaml b/projects/UMiss_Stein.yaml index f42eb40dc..af891c176 100644 --- a/projects/UMiss_Stein.yaml +++ b/projects/UMiss_Stein.yaml @@ -9,3 +9,4 @@ ID: '839' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/bigpgrrmxblz' diff --git a/projects/UMissouri_Nada.yaml b/projects/UMissouri_Nada.yaml index 163a49b54..d083224d2 100644 --- a/projects/UMissouri_Nada.yaml +++ b/projects/UMissouri_Nada.yaml @@ -13,3 +13,4 @@ PIName: Ayman Nada Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/dohu2f6ba08u' diff --git a/projects/UMontana_Roy.yaml b/projects/UMontana_Roy.yaml index 8b3e4211c..a1df6e212 100644 --- a/projects/UMontana_Roy.yaml +++ b/projects/UMontana_Roy.yaml @@ -13,3 +13,4 @@ Department: Department of Biomedical and Pharmaceutical Sciences FieldOfScience: Biological and Biomedical Sciences Organization: University of Montana PIName: Amitava Roy +InstitutionID: 'https://osg-htc.org/iid/sdmbw89obfoi' diff --git a/projects/UMontana_Wheeler.yaml b/projects/UMontana_Wheeler.yaml index f379fd736..a02876aaf 100644 --- a/projects/UMontana_Wheeler.yaml +++ b/projects/UMontana_Wheeler.yaml @@ -8,3 +8,4 @@ PIName: Travis Wheeler Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/sdmbw89obfoi' diff --git a/projects/UNC-RESOLVE-photometry.yaml b/projects/UNC-RESOLVE-photometry.yaml index c463536dc..48deb1acb 100644 --- a/projects/UNC-RESOLVE-photometry.yaml +++ b/projects/UNC-RESOLVE-photometry.yaml @@ -7,3 +7,4 @@ PIName: David Stark Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/nhz3r9d0308l' diff --git a/projects/UNC_Drut.yaml b/projects/UNC_Drut.yaml index 2591b8483..2d65d42a0 100644 --- a/projects/UNC_Drut.yaml +++ b/projects/UNC_Drut.yaml @@ -9,3 +9,4 @@ ID: '709' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nhz3r9d0308l' diff --git a/projects/UND_Delhommelle.yaml b/projects/UND_Delhommelle.yaml index 80f3482d9..ee59f8997 100644 --- a/projects/UND_Delhommelle.yaml +++ b/projects/UND_Delhommelle.yaml @@ -8,3 +8,4 @@ PIName: Jerome Delhommelle Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mxii12n9x22s' diff --git a/projects/UNH-IMD.yaml b/projects/UNH-IMD.yaml index cc07d070a..79bf87faf 100644 --- a/projects/UNH-IMD.yaml +++ b/projects/UNH-IMD.yaml @@ -8,3 +8,4 @@ PIName: Dequan Xiao Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7b1hagvpg2j1' diff --git a/projects/UNI_Staff.yaml b/projects/UNI_Staff.yaml index 6a7836363..f6d9be100 100644 --- a/projects/UNI_Staff.yaml +++ b/projects/UNI_Staff.yaml @@ -3,3 +3,4 @@ Department: Information Technology, Network & Infrastructure Services FieldOfScience: Training Organization: University of Northern Iowa PIName: Wesley Jones +InstitutionID: 'https://osg-htc.org/iid/940o5v3ne7m0' diff --git a/projects/UNL_Cui.yaml b/projects/UNL_Cui.yaml index 92408a90c..045a65ad4 100644 --- a/projects/UNL_Cui.yaml +++ b/projects/UNL_Cui.yaml @@ -9,3 +9,4 @@ ID: '841' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/UNL_Fuchs.yaml b/projects/UNL_Fuchs.yaml index 9c6fa7565..4ea5c6440 100644 --- a/projects/UNL_Fuchs.yaml +++ b/projects/UNL_Fuchs.yaml @@ -7,3 +7,4 @@ PIName: Matthias Fuchs Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/UNL_Hebets.yaml b/projects/UNL_Hebets.yaml index 6bd82256c..2c2e03098 100644 --- a/projects/UNL_Hebets.yaml +++ b/projects/UNL_Hebets.yaml @@ -3,3 +3,4 @@ Department: Biological Sciences FieldOfScience: Biological Sciences Organization: University of Nebraska-Lincoln PIName: Eileen Hebets +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/UNL_Howard.yaml b/projects/UNL_Howard.yaml index bc73954a6..577d9724a 100644 --- a/projects/UNL_Howard.yaml +++ b/projects/UNL_Howard.yaml @@ -7,3 +7,4 @@ PIName: Reka Howard Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/UNL_Ramamurthy.yaml b/projects/UNL_Ramamurthy.yaml index 84d2bb6c7..123fbe2c8 100644 --- a/projects/UNL_Ramamurthy.yaml +++ b/projects/UNL_Ramamurthy.yaml @@ -3,3 +3,4 @@ Description: Research on optimizing large data transfers for science experiments FieldOfScience: Computer and Information Services Organization: University of Nebraska-Lincoln PIName: Byrav Ramamurthy +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/UNL_Stolle.yaml b/projects/UNL_Stolle.yaml index 7189d8ca8..028669cb4 100644 --- a/projects/UNL_Stolle.yaml +++ b/projects/UNL_Stolle.yaml @@ -9,3 +9,4 @@ ID: '838' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/UNL_Weitzel.yaml b/projects/UNL_Weitzel.yaml index 02be7a9a5..cf57677cd 100644 --- a/projects/UNL_Weitzel.yaml +++ b/projects/UNL_Weitzel.yaml @@ -7,3 +7,4 @@ PIName: Derek Weitzel Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/UNL_Yang.yaml b/projects/UNL_Yang.yaml index 32924c177..ca310e49e 100644 --- a/projects/UNL_Yang.yaml +++ b/projects/UNL_Yang.yaml @@ -9,3 +9,4 @@ ID: '837' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/UNL_Zhang.yaml b/projects/UNL_Zhang.yaml index b2d6f3aaf..edf8599ac 100644 --- a/projects/UNL_Zhang.yaml +++ b/projects/UNL_Zhang.yaml @@ -9,3 +9,4 @@ ID: '840' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/UNLbcrf.yaml b/projects/UNLbcrf.yaml index 9623df06a..bb7a3a1f9 100644 --- a/projects/UNLbcrf.yaml +++ b/projects/UNLbcrf.yaml @@ -12,3 +12,4 @@ PIName: Jean-Jack M. Riethoven Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/UNM_Gulisija.yaml b/projects/UNM_Gulisija.yaml index 19a9dbbfc..f5cfcbfad 100644 --- a/projects/UNM_Gulisija.yaml +++ b/projects/UNM_Gulisija.yaml @@ -7,3 +7,4 @@ PIName: Davorka Gulisija Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/pclpz1bwbpdi' diff --git a/projects/UNOmaha_Chase.yaml b/projects/UNOmaha_Chase.yaml index fe9e39f65..cb9930c14 100644 --- a/projects/UNOmaha_Chase.yaml +++ b/projects/UNOmaha_Chase.yaml @@ -9,3 +9,4 @@ ID: '725' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fg2dv7fu4myy' diff --git a/projects/UOregon_Melgar.yaml b/projects/UOregon_Melgar.yaml index f1d7502c9..1d1df727f 100644 --- a/projects/UOregon_Melgar.yaml +++ b/projects/UOregon_Melgar.yaml @@ -6,3 +6,4 @@ Description: >- FieldOfScience: Geological and Earth Sciences Organization: University of Oregon PIName: Diego Melgar +InstitutionID: 'https://osg-htc.org/iid/7j4ogzyjflij' diff --git a/projects/UOregon_Shende.yaml b/projects/UOregon_Shende.yaml index bb9b6fb22..ac9c1e026 100644 --- a/projects/UOregon_Shende.yaml +++ b/projects/UOregon_Shende.yaml @@ -16,3 +16,4 @@ PIName: Sameer Shende Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7j4ogzyjflij' diff --git a/projects/UPCDOSAR.yaml b/projects/UPCDOSAR.yaml index 71b619cda..ef543cf85 100644 --- a/projects/UPCDOSAR.yaml +++ b/projects/UPCDOSAR.yaml @@ -12,3 +12,4 @@ PIName: Rob Quick Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uws6kivcttuc' diff --git a/projects/UPRM_Ramos.yaml b/projects/UPRM_Ramos.yaml index 8139b2c4b..afbe67177 100644 --- a/projects/UPRM_Ramos.yaml +++ b/projects/UPRM_Ramos.yaml @@ -13,3 +13,4 @@ PIName: Rafael A. Ramos Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/43gwnkrodhv9' diff --git a/projects/UPRRP-MR.yaml b/projects/UPRRP-MR.yaml index ad6d7d0d6..3ee8ad78f 100644 --- a/projects/UPRRP-MR.yaml +++ b/projects/UPRRP-MR.yaml @@ -17,3 +17,4 @@ PIName: Steven Massey Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/b1qdmhgy40ul' diff --git a/projects/UPenn_Ramdas.yaml b/projects/UPenn_Ramdas.yaml index e619a13e1..c6c440bd1 100644 --- a/projects/UPenn_Ramdas.yaml +++ b/projects/UPenn_Ramdas.yaml @@ -9,3 +9,4 @@ ID: '765' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nv2rjrft01gg' diff --git a/projects/USC_CARC.yaml b/projects/USC_CARC.yaml index 23982b885..65d348e82 100644 --- a/projects/USC_CARC.yaml +++ b/projects/USC_CARC.yaml @@ -7,3 +7,4 @@ PIName: BD Kim Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/6edduwj65dlr' diff --git a/projects/USC_Deelman.yaml b/projects/USC_Deelman.yaml index 13ee052de..b3b12a34e 100644 --- a/projects/USC_Deelman.yaml +++ b/projects/USC_Deelman.yaml @@ -8,3 +8,4 @@ Sponsor: CampusGrid: Name: ISI +InstitutionID: 'https://osg-htc.org/iid/6edduwj65dlr' diff --git a/projects/USC_Rahbari.yaml b/projects/USC_Rahbari.yaml index c7382225b..d44549b8f 100644 --- a/projects/USC_Rahbari.yaml +++ b/projects/USC_Rahbari.yaml @@ -7,3 +7,4 @@ PIName: Iman Rahbari Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/6edduwj65dlr' diff --git a/projects/USDA_Andorf.yaml b/projects/USDA_Andorf.yaml index 27576959c..067b9455e 100644 --- a/projects/USDA_Andorf.yaml +++ b/projects/USDA_Andorf.yaml @@ -6,3 +6,4 @@ Department: Midwest Area, Corn Insects, and Crop Genetics Research Unit FieldOfScience: Biological and Biomedical Sciences Organization: United States Department of Agriculture PIName: Carson Andorf +InstitutionID: 'https://osg-htc.org/iid/qtdq2vohbire' diff --git a/projects/USD_PHYS733.yaml b/projects/USD_PHYS733.yaml index 7f1d94e2e..35c646080 100644 --- a/projects/USD_PHYS733.yaml +++ b/projects/USD_PHYS733.yaml @@ -7,3 +7,4 @@ PIName: Jing Liu Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/it45nx81xgfl' diff --git a/projects/USD_RCG.yaml b/projects/USD_RCG.yaml index 5d0739d15..8ea5f6abb 100644 --- a/projects/USD_RCG.yaml +++ b/projects/USD_RCG.yaml @@ -9,3 +9,4 @@ ID: '714' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/it45nx81xgfl' diff --git a/projects/USU_Kaundal.yaml b/projects/USU_Kaundal.yaml index 7b9139aad..4058caef5 100644 --- a/projects/USU_Kaundal.yaml +++ b/projects/USU_Kaundal.yaml @@ -21,3 +21,4 @@ ID: '849' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/xjsosxnj8jij' diff --git a/projects/USheffield_DUNE.yaml b/projects/USheffield_DUNE.yaml index 79b8b6372..ba6bac0a2 100644 --- a/projects/USheffield_DUNE.yaml +++ b/projects/USheffield_DUNE.yaml @@ -9,3 +9,4 @@ ID: '823' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o55quyiox0t3' diff --git a/projects/UTA_Cuntz.yaml b/projects/UTA_Cuntz.yaml index 8ddc65ef4..7c463bb71 100644 --- a/projects/UTA_Cuntz.yaml +++ b/projects/UTA_Cuntz.yaml @@ -7,3 +7,4 @@ PIName: Manfred Cuntz Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fcm0rnxmtcor' diff --git a/projects/UTA_Jones.yaml b/projects/UTA_Jones.yaml index 5e7ddaf41..6308fa357 100644 --- a/projects/UTA_Jones.yaml +++ b/projects/UTA_Jones.yaml @@ -5,3 +5,4 @@ Department: Physics FieldOfScience: Physics Organization: University of Texas at Arlington PIName: Ben Jones +InstitutionID: 'https://osg-htc.org/iid/fcm0rnxmtcor' diff --git a/projects/UTAustin_Shoemaker.yaml b/projects/UTAustin_Shoemaker.yaml index fa3eec117..f51cde05d 100644 --- a/projects/UTAustin_Shoemaker.yaml +++ b/projects/UTAustin_Shoemaker.yaml @@ -8,3 +8,4 @@ PIName: Deirdre Shoemaker Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/6z0d22dz19io' diff --git a/projects/UTAustin_Zimmerman.yaml b/projects/UTAustin_Zimmerman.yaml index 10219c979..31e229697 100644 --- a/projects/UTAustin_Zimmerman.yaml +++ b/projects/UTAustin_Zimmerman.yaml @@ -21,3 +21,4 @@ ResourceAllocations: - GroupName: TACC-Stampede2 LocalAllocationID: "GravSearches" +InstitutionID: 'https://osg-htc.org/iid/6z0d22dz19io' diff --git a/projects/UTEP_DeBlasio.yaml b/projects/UTEP_DeBlasio.yaml index 4124d0282..50dca7916 100644 --- a/projects/UTEP_DeBlasio.yaml +++ b/projects/UTEP_DeBlasio.yaml @@ -15,3 +15,4 @@ PIName: Dan DeBlasio Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/kkigje11ak58' diff --git a/projects/UTEP_Moore.yaml b/projects/UTEP_Moore.yaml index 7de2f2430..2add287ea 100644 --- a/projects/UTEP_Moore.yaml +++ b/projects/UTEP_Moore.yaml @@ -3,3 +3,4 @@ Department: Computer Science FieldOfScience: Computer and Information Services Organization: University of Texas at El Paso PIName: Shirley Moore +InstitutionID: 'https://osg-htc.org/iid/kkigje11ak58' diff --git a/projects/UTK_Luettgau.yaml b/projects/UTK_Luettgau.yaml index 63be4731f..13c6581e7 100644 --- a/projects/UTK_Luettgau.yaml +++ b/projects/UTK_Luettgau.yaml @@ -9,3 +9,4 @@ PIName: Jakob Luettgau Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/hp8930spi37u' diff --git a/projects/UTSA_Anantua.yaml b/projects/UTSA_Anantua.yaml index 4929f6028..3836b2b39 100644 --- a/projects/UTSA_Anantua.yaml +++ b/projects/UTSA_Anantua.yaml @@ -6,3 +6,4 @@ Department: Department of Physics and Astronomy FieldOfScience: Astronomy and Astrophysics Organization: The University of Texas at San Antonio PIName: Richard Anantua +InstitutionID: 'https://osg-htc.org/iid/2cop1xndpdtp' diff --git a/projects/UTSouthwestern_Lin.yaml b/projects/UTSouthwestern_Lin.yaml index cf07d8f05..0d4b29c60 100644 --- a/projects/UTSouthwestern_Lin.yaml +++ b/projects/UTSouthwestern_Lin.yaml @@ -8,3 +8,4 @@ PIName: Milo Lin Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/26ns7uva5t0a' diff --git a/projects/UTulsa_Booth.yaml b/projects/UTulsa_Booth.yaml index f2ef6b510..3a18e2166 100644 --- a/projects/UTulsa_Booth.yaml +++ b/projects/UTulsa_Booth.yaml @@ -9,3 +9,4 @@ ID: '843' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/to441mldveew' diff --git a/projects/UWMadison_Banks.yaml b/projects/UWMadison_Banks.yaml index c47ab4e49..6c97e97c6 100644 --- a/projects/UWMadison_Banks.yaml +++ b/projects/UWMadison_Banks.yaml @@ -7,3 +7,4 @@ PIName: Matthew Banks Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Bechtol.yaml b/projects/UWMadison_Bechtol.yaml index fb4ad4e58..ff3d753ac 100644 --- a/projects/UWMadison_Bechtol.yaml +++ b/projects/UWMadison_Bechtol.yaml @@ -9,3 +9,4 @@ ID: '822' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Chen.yaml b/projects/UWMadison_Chen.yaml index 09a4caf58..2b7abb326 100644 --- a/projects/UWMadison_Chen.yaml +++ b/projects/UWMadison_Chen.yaml @@ -7,3 +7,4 @@ PIName: Min Chen Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Curtin.yaml b/projects/UWMadison_Curtin.yaml index 377c71519..21b7f46eb 100644 --- a/projects/UWMadison_Curtin.yaml +++ b/projects/UWMadison_Curtin.yaml @@ -3,3 +3,4 @@ Description: 'https://arc.psych.wisc.edu/' FieldOfScience: Social, Behavioral & Economic Sciences Organization: University of Wisconsin-Madison PIName: John Curtin +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_DeLeon.yaml b/projects/UWMadison_DeLeon.yaml index f13e70582..d014095ed 100644 --- a/projects/UWMadison_DeLeon.yaml +++ b/projects/UWMadison_DeLeon.yaml @@ -9,3 +9,4 @@ ID: '818' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_DeWerd.yaml b/projects/UWMadison_DeWerd.yaml index 9ca5d913f..c54c6ad7f 100644 --- a/projects/UWMadison_DeWerd.yaml +++ b/projects/UWMadison_DeWerd.yaml @@ -4,3 +4,4 @@ FieldOfScience: Physics Organization: University of Wisconsin-Madison PIName: Larry DeWerd +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Dopfer.yaml b/projects/UWMadison_Dopfer.yaml index d14487cfb..51ec3525f 100644 --- a/projects/UWMadison_Dopfer.yaml +++ b/projects/UWMadison_Dopfer.yaml @@ -9,3 +9,4 @@ ID: '819' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Ericksen.yaml b/projects/UWMadison_Ericksen.yaml index a7d2bbbdc..0a9f540e8 100644 --- a/projects/UWMadison_Ericksen.yaml +++ b/projects/UWMadison_Ericksen.yaml @@ -3,3 +3,4 @@ Description: Molecule docking as part of drug discovery research (http://hts.wis FieldOfScience: Health Organization: University of Wisconsin-Madison PIName: Spencer Ericksen +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Fredrickson.yaml b/projects/UWMadison_Fredrickson.yaml index 1de710cf6..1fdbe2449 100644 --- a/projects/UWMadison_Fredrickson.yaml +++ b/projects/UWMadison_Fredrickson.yaml @@ -9,3 +9,4 @@ ID: '817' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Gitter.yaml b/projects/UWMadison_Gitter.yaml index 4bee3276e..c9e5e8369 100644 --- a/projects/UWMadison_Gitter.yaml +++ b/projects/UWMadison_Gitter.yaml @@ -3,3 +3,4 @@ Description: 'https://www.biostat.wisc.edu/~gitter/' FieldOfScience: Medical (NIH) Organization: University of Wisconsin-Madison PIName: Anthony Gitter +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Gutierrez.yaml b/projects/UWMadison_Gutierrez.yaml index 4a7b6042f..138b98969 100644 --- a/projects/UWMadison_Gutierrez.yaml +++ b/projects/UWMadison_Gutierrez.yaml @@ -9,3 +9,4 @@ ID: '599' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Kaplan.yaml b/projects/UWMadison_Kaplan.yaml index 4f1cb663b..f6309ff7f 100644 --- a/projects/UWMadison_Kaplan.yaml +++ b/projects/UWMadison_Kaplan.yaml @@ -9,3 +9,4 @@ ID: '730' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Keles.yaml b/projects/UWMadison_Keles.yaml index 213d300af..f75aa4295 100644 --- a/projects/UWMadison_Keles.yaml +++ b/projects/UWMadison_Keles.yaml @@ -9,3 +9,4 @@ ID: '815' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Keller.yaml b/projects/UWMadison_Keller.yaml index 178c6ed62..5b8afdadb 100644 --- a/projects/UWMadison_Keller.yaml +++ b/projects/UWMadison_Keller.yaml @@ -9,3 +9,4 @@ ID: '816' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Kwan.yaml b/projects/UWMadison_Kwan.yaml index 585384311..4b359680b 100644 --- a/projects/UWMadison_Kwan.yaml +++ b/projects/UWMadison_Kwan.yaml @@ -3,3 +3,4 @@ Description: 'Bioactive molecules from cultured and uncultured bacteria (https:/ FieldOfScience: Health Organization: University of Wisconsin-Madison PIName: Jason Kwan +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Li.yaml b/projects/UWMadison_Li.yaml index beec8f9fa..7e85f2cf3 100644 --- a/projects/UWMadison_Li.yaml +++ b/projects/UWMadison_Li.yaml @@ -3,3 +3,4 @@ Department: Mechanical Engineering FieldOfScience: Engineering Organization: University of Wisconsin-Madison PIName: Ying Li +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Livny.yaml b/projects/UWMadison_Livny.yaml index 1d4b1f0de..2457b38ae 100644 --- a/projects/UWMadison_Livny.yaml +++ b/projects/UWMadison_Livny.yaml @@ -3,3 +3,4 @@ Description: http://chtc.cs.wisc.edu/ FieldOfScience: Computer & Information Science & Engineering Organization: University of Wisconsin-Madison PIName: Miron Livny +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_McMillan.yaml b/projects/UWMadison_McMillan.yaml index 6fcf520ff..6842d66a5 100644 --- a/projects/UWMadison_McMillan.yaml +++ b/projects/UWMadison_McMillan.yaml @@ -9,3 +9,4 @@ ID: '658' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Negrut.yaml b/projects/UWMadison_Negrut.yaml index b01066f04..e4e2f84b2 100644 --- a/projects/UWMadison_Negrut.yaml +++ b/projects/UWMadison_Negrut.yaml @@ -7,3 +7,4 @@ PIName: Dan Negrut Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Parks.yaml b/projects/UWMadison_Parks.yaml index 881f8ae23..b480afbc4 100644 --- a/projects/UWMadison_Parks.yaml +++ b/projects/UWMadison_Parks.yaml @@ -9,3 +9,4 @@ ID: '585' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Paskewitz.yaml b/projects/UWMadison_Paskewitz.yaml index 83acfd7c9..b53236105 100644 --- a/projects/UWMadison_Paskewitz.yaml +++ b/projects/UWMadison_Paskewitz.yaml @@ -9,3 +9,4 @@ ID: '703' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Payseur.yaml b/projects/UWMadison_Payseur.yaml index 4ad3a2032..b0e25489d 100644 --- a/projects/UWMadison_Payseur.yaml +++ b/projects/UWMadison_Payseur.yaml @@ -3,3 +3,4 @@ Description: Work on understanding the origin of species and the evolution of re FieldOfScience: Genomics Organization: University of Wisconsin-Madison PIName: Bret Payseur +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Pool.yaml b/projects/UWMadison_Pool.yaml index d5c9a0e22..306b13a40 100644 --- a/projects/UWMadison_Pool.yaml +++ b/projects/UWMadison_Pool.yaml @@ -3,3 +3,4 @@ Description: 'Population Genomics and the Genetic Basis of Adaptive Evolution - FieldOfScience: Biological Sciences Organization: University of Wisconsin-Madison PIName: John Pool +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Rebel.yaml b/projects/UWMadison_Rebel.yaml index 13c0a85f7..5e671f731 100644 --- a/projects/UWMadison_Rebel.yaml +++ b/projects/UWMadison_Rebel.yaml @@ -9,3 +9,4 @@ ID: '676' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Rui.yaml b/projects/UWMadison_Rui.yaml index 566a3c94b..f76d98f19 100644 --- a/projects/UWMadison_Rui.yaml +++ b/projects/UWMadison_Rui.yaml @@ -9,3 +9,4 @@ ID: '705' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Skala.yaml b/projects/UWMadison_Skala.yaml index f105eaf1b..74d1ed49f 100644 --- a/projects/UWMadison_Skala.yaml +++ b/projects/UWMadison_Skala.yaml @@ -9,3 +9,4 @@ ID: '702' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Solis-Lemus.yaml b/projects/UWMadison_Solis-Lemus.yaml index f237cc4c9..765eb4bcc 100644 --- a/projects/UWMadison_Solis-Lemus.yaml +++ b/projects/UWMadison_Solis-Lemus.yaml @@ -5,3 +5,4 @@ Department: Plant Pathology FieldOfScience: Biological Sciences Organization: University of Wisconsin-Madison PIName: Claudia Solis-Lemus +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Tang.yaml b/projects/UWMadison_Tang.yaml index 64d64b9b0..7914ec378 100644 --- a/projects/UWMadison_Tang.yaml +++ b/projects/UWMadison_Tang.yaml @@ -9,3 +9,4 @@ ID: '704' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Vavilov.yaml b/projects/UWMadison_Vavilov.yaml index 8ad4392c4..19eec4b78 100644 --- a/projects/UWMadison_Vavilov.yaml +++ b/projects/UWMadison_Vavilov.yaml @@ -9,3 +9,4 @@ ID: '631' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Wei.yaml b/projects/UWMadison_Wei.yaml index 5c89cceac..59391c3e1 100644 --- a/projects/UWMadison_Wei.yaml +++ b/projects/UWMadison_Wei.yaml @@ -9,3 +9,4 @@ ID: '702' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Weigel.yaml b/projects/UWMadison_Weigel.yaml index b42f69513..575636c4d 100644 --- a/projects/UWMadison_Weigel.yaml +++ b/projects/UWMadison_Weigel.yaml @@ -3,3 +3,4 @@ Department: Animal and Dairy Sciences FieldOfScience: Genomics Organization: University of Wisconsin-Madison PIName: Kent Weigel +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMadison_Wright.yaml b/projects/UWMadison_Wright.yaml index d962ca7de..354adee4c 100644 --- a/projects/UWMadison_Wright.yaml +++ b/projects/UWMadison_Wright.yaml @@ -9,3 +9,4 @@ ID: '698' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/UWMilwaukee_Yoon.yaml b/projects/UWMilwaukee_Yoon.yaml index a32663ca0..2a414e0f1 100644 --- a/projects/UWMilwaukee_Yoon.yaml +++ b/projects/UWMilwaukee_Yoon.yaml @@ -8,3 +8,4 @@ Description: > FieldOfScience: Economics Organization: University of Wisconsin-Milwaukee PIName: Jangsu Yoon +InstitutionID: 'https://osg-htc.org/iid/812rlsqwylrc' diff --git a/projects/UW_deKok.yaml b/projects/UW_deKok.yaml index e85efb69b..753c9dad5 100644 --- a/projects/UW_deKok.yaml +++ b/projects/UW_deKok.yaml @@ -9,3 +9,4 @@ ID: '644' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8lpmoeouw66o' diff --git a/projects/UserSchool2016.yaml b/projects/UserSchool2016.yaml index fe9349d63..ff3518a84 100644 --- a/projects/UserSchool2016.yaml +++ b/projects/UserSchool2016.yaml @@ -7,3 +7,4 @@ PIName: Christina Koch Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/Utah_Chipman.yaml b/projects/Utah_Chipman.yaml index d158b0c5d..b216e908e 100644 --- a/projects/Utah_Chipman.yaml +++ b/projects/Utah_Chipman.yaml @@ -9,3 +9,4 @@ ID: '751' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/iwlonrroeaal' diff --git a/projects/Utah_Nelson.yaml b/projects/Utah_Nelson.yaml index ba5ec48e5..5e68fc5cd 100644 --- a/projects/Utah_Nelson.yaml +++ b/projects/Utah_Nelson.yaml @@ -5,3 +5,4 @@ Department: Department of Radiation Oncology FieldOfScience: Physics and radiation therapy Organization: University of Utah PIName: Nicholas Nelson +InstitutionID: 'https://osg-htc.org/iid/iwlonrroeaal' diff --git a/projects/VERITAS.yaml b/projects/VERITAS.yaml index 11136dc9e..228a18e0d 100644 --- a/projects/VERITAS.yaml +++ b/projects/VERITAS.yaml @@ -10,3 +10,4 @@ PIName: Nepomuk Otte Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/VT_Riexinger.yaml b/projects/VT_Riexinger.yaml index 8590563f2..ce166e3fe 100644 --- a/projects/VT_Riexinger.yaml +++ b/projects/VT_Riexinger.yaml @@ -7,3 +7,4 @@ PIName: Luke Riexinger Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/6oylis0t2x6u' diff --git a/projects/Vanderbilt_Gabella.yaml b/projects/Vanderbilt_Gabella.yaml index 1a4e65349..4633ba21e 100644 --- a/projects/Vanderbilt_Gabella.yaml +++ b/projects/Vanderbilt_Gabella.yaml @@ -9,3 +9,4 @@ ID: '738' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7bgts07ydpxp' diff --git a/projects/Vanderbilt_Paquet.yaml b/projects/Vanderbilt_Paquet.yaml index d043e4689..78a75c973 100644 --- a/projects/Vanderbilt_Paquet.yaml +++ b/projects/Vanderbilt_Paquet.yaml @@ -6,3 +6,4 @@ Department: Department of Physics & Astronomy FieldOfScience: Physics Organization: Vanderbilt University PIName: Jean-Francois Paquet +InstitutionID: 'https://osg-htc.org/iid/7bgts07ydpxp' diff --git a/projects/Venda_Arrey.yaml b/projects/Venda_Arrey.yaml index f2bdc333e..a719850dc 100644 --- a/projects/Venda_Arrey.yaml +++ b/projects/Venda_Arrey.yaml @@ -9,3 +9,4 @@ ID: '592' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8rl7p1o3czlh' diff --git a/projects/Villanova_Staff.yaml b/projects/Villanova_Staff.yaml index 0d6d8968d..1eef005da 100644 --- a/projects/Villanova_Staff.yaml +++ b/projects/Villanova_Staff.yaml @@ -9,3 +9,4 @@ ID: '768' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/p5dkoevnrvt0' diff --git a/projects/VolcanoTomography.yaml b/projects/VolcanoTomography.yaml index 4fe973673..2a3c1b036 100644 --- a/projects/VolcanoTomography.yaml +++ b/projects/VolcanoTomography.yaml @@ -9,3 +9,4 @@ ID: '538' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/k3rbyge3uinw' diff --git a/projects/WCUPA_Ngo.yaml b/projects/WCUPA_Ngo.yaml index 3de7e8868..94334ef15 100644 --- a/projects/WCUPA_Ngo.yaml +++ b/projects/WCUPA_Ngo.yaml @@ -9,3 +9,4 @@ ID: '656' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/osvmob55hi8c' diff --git a/projects/WEST.yaml b/projects/WEST.yaml index 002fd39a1..5eff042a0 100644 --- a/projects/WEST.yaml +++ b/projects/WEST.yaml @@ -9,3 +9,4 @@ PIName: Dr. Andrew Leakey Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/10izzs5e7v1r' diff --git a/projects/WSU_3DHydro.yaml b/projects/WSU_3DHydro.yaml index 539b7a483..ab16402b5 100644 --- a/projects/WSU_3DHydro.yaml +++ b/projects/WSU_3DHydro.yaml @@ -9,3 +9,4 @@ ID: '570' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/d54pf46v5aqz' diff --git a/projects/WUSTL_Harris.yaml b/projects/WUSTL_Harris.yaml index e05d0c71e..54a006742 100644 --- a/projects/WUSTL_Harris.yaml +++ b/projects/WUSTL_Harris.yaml @@ -9,3 +9,4 @@ ID: '562' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3d30s0gjz8yx' diff --git a/projects/Washington_Savage.yaml b/projects/Washington_Savage.yaml index 8ecb33c58..597b74c59 100644 --- a/projects/Washington_Savage.yaml +++ b/projects/Washington_Savage.yaml @@ -7,3 +7,4 @@ PIName: Martin J. Savage Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8lpmoeouw66o' diff --git a/projects/WayneStateU_Majumder.yaml b/projects/WayneStateU_Majumder.yaml index 381af6387..fd4808f41 100644 --- a/projects/WayneStateU_Majumder.yaml +++ b/projects/WayneStateU_Majumder.yaml @@ -9,3 +9,4 @@ ID: '667' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/d54pf46v5aqz' diff --git a/projects/WayneStateU_Pique-Regi.yaml b/projects/WayneStateU_Pique-Regi.yaml index 40fe40098..3715a9003 100644 --- a/projects/WayneStateU_Pique-Regi.yaml +++ b/projects/WayneStateU_Pique-Regi.yaml @@ -9,3 +9,4 @@ ID: '722' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/d54pf46v5aqz' diff --git a/projects/WayneStateU_Pruneau.yaml b/projects/WayneStateU_Pruneau.yaml index e3968ff44..84daeeb93 100644 --- a/projects/WayneStateU_Pruneau.yaml +++ b/projects/WayneStateU_Pruneau.yaml @@ -7,3 +7,4 @@ PIName: Claude Pruneau Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/d54pf46v5aqz' diff --git a/projects/WayneStateU_Staff.yaml b/projects/WayneStateU_Staff.yaml index d8fdda234..b2f31cdbb 100644 --- a/projects/WayneStateU_Staff.yaml +++ b/projects/WayneStateU_Staff.yaml @@ -9,3 +9,4 @@ ID: '565' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/d54pf46v5aqz' diff --git a/projects/WayneStateU_TDA.yaml b/projects/WayneStateU_TDA.yaml index a9971be78..ea3ca9ef8 100644 --- a/projects/WayneStateU_TDA.yaml +++ b/projects/WayneStateU_TDA.yaml @@ -9,3 +9,4 @@ ID: '566' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/d54pf46v5aqz' diff --git a/projects/WeNMR.yaml b/projects/WeNMR.yaml index 607e63de1..e15289df5 100644 --- a/projects/WeNMR.yaml +++ b/projects/WeNMR.yaml @@ -14,3 +14,4 @@ ID: 665 Sponsor: VirtualOrganization: Name: ENMR +InstitutionID: 'https://osg-htc.org/iid/e333zusaa3hr' diff --git a/projects/Webster_Suo.yaml b/projects/Webster_Suo.yaml index be3700428..4975058c1 100644 --- a/projects/Webster_Suo.yaml +++ b/projects/Webster_Suo.yaml @@ -6,3 +6,4 @@ Department: Computer and information science FieldOfScience: Computer Science Organization: Webster University PIName: Xiaoyuan Suo +InstitutionID: 'https://osg-htc.org/iid/x8bhzbc8sk5b' diff --git a/projects/WheatGenomics.yaml b/projects/WheatGenomics.yaml index 2dd09e33a..08e25f5a1 100644 --- a/projects/WheatGenomics.yaml +++ b/projects/WheatGenomics.yaml @@ -7,3 +7,4 @@ PIName: Ghana Challa Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/oqz71b6b44za' diff --git a/projects/WichitaState_Hwang.yaml b/projects/WichitaState_Hwang.yaml index a0767d0a6..bdc638ca0 100644 --- a/projects/WichitaState_Hwang.yaml +++ b/projects/WichitaState_Hwang.yaml @@ -7,3 +7,4 @@ PIName: Gisuk Hwang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/p3nn2sljiwwl' diff --git a/projects/Workshop-RMACC21.yaml b/projects/Workshop-RMACC21.yaml index 9fb1aedeb..b1cb4edbf 100644 --- a/projects/Workshop-RMACC21.yaml +++ b/projects/Workshop-RMACC21.yaml @@ -9,3 +9,4 @@ ID: '794' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/8hgx4a4ptpt9' diff --git a/projects/XSEDE_ECSS.yaml b/projects/XSEDE_ECSS.yaml index 6c1ae5d13..9a884714b 100644 --- a/projects/XSEDE_ECSS.yaml +++ b/projects/XSEDE_ECSS.yaml @@ -9,3 +9,4 @@ ID: '715' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/XSEDE_XCI.yaml b/projects/XSEDE_XCI.yaml index ce6d29673..4af735cb6 100644 --- a/projects/XSEDE_XCI.yaml +++ b/projects/XSEDE_XCI.yaml @@ -22,3 +22,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/26xdp9lwzmhd' diff --git a/projects/XeTPC.yaml b/projects/XeTPC.yaml index 6b6994007..0a915262a 100644 --- a/projects/XeTPC.yaml +++ b/projects/XeTPC.yaml @@ -9,3 +9,4 @@ PIName: Adam Para Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/Yale_DeMartini.yaml b/projects/Yale_DeMartini.yaml index bf9bb3a24..a57a88ccf 100644 --- a/projects/Yale_DeMartini.yaml +++ b/projects/Yale_DeMartini.yaml @@ -5,3 +5,4 @@ Description: Numerical simulations of the (1+1)D abelian Higgs theory on the lat FieldOfScience: Nuclear Physics Organization: Yale University PIName: Dallas DeMartini +InstitutionID: 'https://osg-htc.org/iid/np1w2l1semy5' diff --git a/projects/Yale_RYang.yaml b/projects/Yale_RYang.yaml index 15a8b1ebe..a1a56997e 100644 --- a/projects/Yale_RYang.yaml +++ b/projects/Yale_RYang.yaml @@ -7,3 +7,4 @@ PIName: Richard Yang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/np1w2l1semy5' diff --git a/projects/Yale_YCRC.yaml b/projects/Yale_YCRC.yaml index cdb8a8ee6..192090a17 100644 --- a/projects/Yale_YCRC.yaml +++ b/projects/Yale_YCRC.yaml @@ -8,3 +8,4 @@ PIName: Sinclair Im Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/np1w2l1semy5' diff --git a/projects/a1synchrony.yaml b/projects/a1synchrony.yaml index 442d38705..c5cbc3353 100644 --- a/projects/a1synchrony.yaml +++ b/projects/a1synchrony.yaml @@ -10,3 +10,4 @@ PIName: Yashar Ahmadian Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7j4ogzyjflij' diff --git a/projects/all.yaml b/projects/all.yaml index 18c34c5a1..502a13c72 100644 --- a/projects/all.yaml +++ b/projects/all.yaml @@ -13,3 +13,4 @@ PIName: John Carlstrom Sponsor: CampusGrid: Name: SPT Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/aprime.yaml b/projects/aprime.yaml index 3e8c7bdc8..809b1c9d8 100644 --- a/projects/aprime.yaml +++ b/projects/aprime.yaml @@ -15,3 +15,4 @@ PIName: Jan Balewski Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/asurcosg.yaml b/projects/asurcosg.yaml index 6d2c8dd81..6cfa08ada 100644 --- a/projects/asurcosg.yaml +++ b/projects/asurcosg.yaml @@ -7,3 +7,4 @@ PIName: Johnathan Lee Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/er1rnzey26m9' diff --git a/projects/atlas.org.Jet-EtMiss.yaml b/projects/atlas.org.Jet-EtMiss.yaml index 8c31895fb..cdbf60118 100644 --- a/projects/atlas.org.Jet-EtMiss.yaml +++ b/projects/atlas.org.Jet-EtMiss.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.org.Tau.yaml b/projects/atlas.org.Tau.yaml index 0981d0118..3b933e77a 100644 --- a/projects/atlas.org.Tau.yaml +++ b/projects/atlas.org.Tau.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.org.albany.yaml b/projects/atlas.org.albany.yaml index 0ee0bd6b7..2fa0e74de 100644 --- a/projects/atlas.org.albany.yaml +++ b/projects/atlas.org.albany.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/m9adt6gcsr8c' diff --git a/projects/atlas.org.anl.yaml b/projects/atlas.org.anl.yaml index 0a8a743cd..c4949d8b7 100644 --- a/projects/atlas.org.anl.yaml +++ b/projects/atlas.org.anl.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/26xdp9lwzmhd' diff --git a/projects/atlas.org.arizona.yaml b/projects/atlas.org.arizona.yaml index 9e612852f..cd6614d8e 100644 --- a/projects/atlas.org.arizona.yaml +++ b/projects/atlas.org.arizona.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/atlas.org.bnl.yaml b/projects/atlas.org.bnl.yaml index ec3bfb09c..92ec352f7 100644 --- a/projects/atlas.org.bnl.yaml +++ b/projects/atlas.org.bnl.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.org.brandeis.yaml b/projects/atlas.org.brandeis.yaml index 071f5e7d5..7fe398c84 100644 --- a/projects/atlas.org.brandeis.yaml +++ b/projects/atlas.org.brandeis.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/z5fxzhzsjpb0' diff --git a/projects/atlas.org.bu.yaml b/projects/atlas.org.bu.yaml index 6a68c38af..e64640907 100644 --- a/projects/atlas.org.bu.yaml +++ b/projects/atlas.org.bu.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/drujeuinri1g' diff --git a/projects/atlas.org.columbia.yaml b/projects/atlas.org.columbia.yaml index 285a1ccb0..dc6d55e53 100644 --- a/projects/atlas.org.columbia.yaml +++ b/projects/atlas.org.columbia.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/avy4x5r4jsrw' diff --git a/projects/atlas.org.duke.yaml b/projects/atlas.org.duke.yaml index 79e586318..f60aecda1 100644 --- a/projects/atlas.org.duke.yaml +++ b/projects/atlas.org.duke.yaml @@ -7,3 +7,4 @@ PIName: Doug Benjamin Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/atlas.org.fresnostate.yaml b/projects/atlas.org.fresnostate.yaml index 9693a87bc..42a4872f1 100644 --- a/projects/atlas.org.fresnostate.yaml +++ b/projects/atlas.org.fresnostate.yaml @@ -7,3 +7,4 @@ PIName: Harinder Singh Bawa Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/yjoil34g24pn' diff --git a/projects/atlas.org.hamptonu.yaml b/projects/atlas.org.hamptonu.yaml index fbc8b4a6e..cbf3ec0b0 100644 --- a/projects/atlas.org.hamptonu.yaml +++ b/projects/atlas.org.hamptonu.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/k38kbasl5hpd' diff --git a/projects/atlas.org.harvard.yaml b/projects/atlas.org.harvard.yaml index de34572cb..48d83f059 100644 --- a/projects/atlas.org.harvard.yaml +++ b/projects/atlas.org.harvard.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/n1kbnzl7kyiv' diff --git a/projects/atlas.org.iastate.yaml b/projects/atlas.org.iastate.yaml index 9cf60f4be..d64102009 100644 --- a/projects/atlas.org.iastate.yaml +++ b/projects/atlas.org.iastate.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/wbwnw037cybm' diff --git a/projects/atlas.org.illinois.yaml b/projects/atlas.org.illinois.yaml index ddb6f9157..8cd9a05e3 100644 --- a/projects/atlas.org.illinois.yaml +++ b/projects/atlas.org.illinois.yaml @@ -7,3 +7,4 @@ PIName: Mark Neubauer Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/10izzs5e7v1r' diff --git a/projects/atlas.org.indiana.yaml b/projects/atlas.org.indiana.yaml index b815d5fa6..b2a3222e4 100644 --- a/projects/atlas.org.indiana.yaml +++ b/projects/atlas.org.indiana.yaml @@ -7,3 +7,4 @@ PIName: Frederick Luehring Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/uws6kivcttuc' diff --git a/projects/atlas.org.latech.yaml b/projects/atlas.org.latech.yaml index 8fdf1a6b3..3cd234ccd 100644 --- a/projects/atlas.org.latech.yaml +++ b/projects/atlas.org.latech.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/qmx56gydd858' diff --git a/projects/atlas.org.lbnl.yaml b/projects/atlas.org.lbnl.yaml index d7ca27cad..ef43e94a7 100644 --- a/projects/atlas.org.lbnl.yaml +++ b/projects/atlas.org.lbnl.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/bvf12qyqplv6' diff --git a/projects/atlas.org.louisville.yaml b/projects/atlas.org.louisville.yaml index 334288185..94f3fd1b2 100644 --- a/projects/atlas.org.louisville.yaml +++ b/projects/atlas.org.louisville.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/hmbcygnwgzdu' diff --git a/projects/atlas.org.mit.yaml b/projects/atlas.org.mit.yaml index e76b7979b..7f776892f 100644 --- a/projects/atlas.org.mit.yaml +++ b/projects/atlas.org.mit.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/atlas.org.msu.yaml b/projects/atlas.org.msu.yaml index e3224ab77..ccf316008 100644 --- a/projects/atlas.org.msu.yaml +++ b/projects/atlas.org.msu.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/wala2w0ka0gb' diff --git a/projects/atlas.org.niu.yaml b/projects/atlas.org.niu.yaml index eaabb541d..0651b620c 100644 --- a/projects/atlas.org.niu.yaml +++ b/projects/atlas.org.niu.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/4q4axu2r92r6' diff --git a/projects/atlas.org.nyu.yaml b/projects/atlas.org.nyu.yaml index 5a49ae0e0..6d7b96199 100644 --- a/projects/atlas.org.nyu.yaml +++ b/projects/atlas.org.nyu.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/hjcl6b3vh3ox' diff --git a/projects/atlas.org.okstate.yaml b/projects/atlas.org.okstate.yaml index 618e76fed..8548cb3ff 100644 --- a/projects/atlas.org.okstate.yaml +++ b/projects/atlas.org.okstate.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/ogvkim1urhzk' diff --git a/projects/atlas.org.osu.yaml b/projects/atlas.org.osu.yaml index d2d2335e7..5cc9da2d0 100644 --- a/projects/atlas.org.osu.yaml +++ b/projects/atlas.org.osu.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/984ms2rzh7do' diff --git a/projects/atlas.org.ou.yaml b/projects/atlas.org.ou.yaml index 73198b070..bdd549733 100644 --- a/projects/atlas.org.ou.yaml +++ b/projects/atlas.org.ou.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/xvsrc4eixk2g' diff --git a/projects/atlas.org.pitt.yaml b/projects/atlas.org.pitt.yaml index ca057e0de..e58d412b4 100644 --- a/projects/atlas.org.pitt.yaml +++ b/projects/atlas.org.pitt.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/2ayx10b74xua' diff --git a/projects/atlas.org.sc.yaml b/projects/atlas.org.sc.yaml index 4d5608280..32e5f4d6b 100644 --- a/projects/atlas.org.sc.yaml +++ b/projects/atlas.org.sc.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/p58u55ae2ahu' diff --git a/projects/atlas.org.slac.yaml b/projects/atlas.org.slac.yaml index 060bb51bc..361837251 100644 --- a/projects/atlas.org.slac.yaml +++ b/projects/atlas.org.slac.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/gsbt8law2xf0' diff --git a/projects/atlas.org.smu.yaml b/projects/atlas.org.smu.yaml index 70ebf31cd..603b2dec2 100644 --- a/projects/atlas.org.smu.yaml +++ b/projects/atlas.org.smu.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/9g1dmrei1pes' diff --git a/projects/atlas.org.stonybrook.yaml b/projects/atlas.org.stonybrook.yaml index 68b6dd69c..d5cab62ee 100644 --- a/projects/atlas.org.stonybrook.yaml +++ b/projects/atlas.org.stonybrook.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/qqd2s2b6m7eh' diff --git a/projects/atlas.org.tufts.yaml b/projects/atlas.org.tufts.yaml index 3e1982b9e..28bfb283b 100644 --- a/projects/atlas.org.tufts.yaml +++ b/projects/atlas.org.tufts.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/vtcuoa0mgv9x' diff --git a/projects/atlas.org.uchicago.yaml b/projects/atlas.org.uchicago.yaml index ede27a02e..d79365fd9 100644 --- a/projects/atlas.org.uchicago.yaml +++ b/projects/atlas.org.uchicago.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/atlas.org.uci.yaml b/projects/atlas.org.uci.yaml index 1e8a520f1..cee9feae4 100644 --- a/projects/atlas.org.uci.yaml +++ b/projects/atlas.org.uci.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/ss614ab1u5qd' diff --git a/projects/atlas.org.ucsc.yaml b/projects/atlas.org.ucsc.yaml index cddff5e7e..148a4e977 100644 --- a/projects/atlas.org.ucsc.yaml +++ b/projects/atlas.org.ucsc.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/n6cai04882ca' diff --git a/projects/atlas.org.uiowa.yaml b/projects/atlas.org.uiowa.yaml index 6c6bbc8a7..6ada31e44 100644 --- a/projects/atlas.org.uiowa.yaml +++ b/projects/atlas.org.uiowa.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/2eafckbgu51c' diff --git a/projects/atlas.org.umass.yaml b/projects/atlas.org.umass.yaml index 9cfc7e805..b6c00bf4b 100644 --- a/projects/atlas.org.umass.yaml +++ b/projects/atlas.org.umass.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/sqj1fi5b7fdj' diff --git a/projects/atlas.org.unm.yaml b/projects/atlas.org.unm.yaml index 21dd0c14e..958302ffb 100644 --- a/projects/atlas.org.unm.yaml +++ b/projects/atlas.org.unm.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/pclpz1bwbpdi' diff --git a/projects/atlas.org.uoregon.yaml b/projects/atlas.org.uoregon.yaml index dc105bb2a..3f1f9b6f4 100644 --- a/projects/atlas.org.uoregon.yaml +++ b/projects/atlas.org.uoregon.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/7j4ogzyjflij' diff --git a/projects/atlas.org.upenn.yaml b/projects/atlas.org.upenn.yaml index 6937a5b67..410ff21c7 100644 --- a/projects/atlas.org.upenn.yaml +++ b/projects/atlas.org.upenn.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/nv2rjrft01gg' diff --git a/projects/atlas.org.uta.yaml b/projects/atlas.org.uta.yaml index cef3ed782..7a0054561 100644 --- a/projects/atlas.org.uta.yaml +++ b/projects/atlas.org.uta.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/fcm0rnxmtcor' diff --git a/projects/atlas.org.utdallas.yaml b/projects/atlas.org.utdallas.yaml index 6c0071d9f..5426383e4 100644 --- a/projects/atlas.org.utdallas.yaml +++ b/projects/atlas.org.utdallas.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/eouhp4r1y2e2' diff --git a/projects/atlas.org.utexas.yaml b/projects/atlas.org.utexas.yaml index 85355bb93..746fe881c 100644 --- a/projects/atlas.org.utexas.yaml +++ b/projects/atlas.org.utexas.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/6z0d22dz19io' diff --git a/projects/atlas.org.washington.yaml b/projects/atlas.org.washington.yaml index de52fd17e..2c1f2495a 100644 --- a/projects/atlas.org.washington.yaml +++ b/projects/atlas.org.washington.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/8lpmoeouw66o' diff --git a/projects/atlas.org.wisc.yaml b/projects/atlas.org.wisc.yaml index 758a1d479..834a18150 100644 --- a/projects/atlas.org.wisc.yaml +++ b/projects/atlas.org.wisc.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/atlas.org.yale.yaml b/projects/atlas.org.yale.yaml index 26e58aa83..4c88efb67 100644 --- a/projects/atlas.org.yale.yaml +++ b/projects/atlas.org.yale.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/np1w2l1semy5' diff --git a/projects/atlas.wg.B-Physics.yaml b/projects/atlas.wg.B-Physics.yaml index d96ba5f98..21c700252 100644 --- a/projects/atlas.wg.B-Physics.yaml +++ b/projects/atlas.wg.B-Physics.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.wg.E-Gamma.yaml b/projects/atlas.wg.E-Gamma.yaml index 40ab895ac..50c562def 100644 --- a/projects/atlas.wg.E-Gamma.yaml +++ b/projects/atlas.wg.E-Gamma.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.wg.Exotics.yaml b/projects/atlas.wg.Exotics.yaml index 6c817438c..b2a2142e3 100644 --- a/projects/atlas.wg.Exotics.yaml +++ b/projects/atlas.wg.Exotics.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/8alpqdbfmj7m' diff --git a/projects/atlas.wg.Flavour-Tagging.yaml b/projects/atlas.wg.Flavour-Tagging.yaml index adff776fc..28ecefd5c 100644 --- a/projects/atlas.wg.Flavour-Tagging.yaml +++ b/projects/atlas.wg.Flavour-Tagging.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.wg.Heavy-Ions.yaml b/projects/atlas.wg.Heavy-Ions.yaml index a9c7e1cf3..3ad8d96e7 100644 --- a/projects/atlas.wg.Heavy-Ions.yaml +++ b/projects/atlas.wg.Heavy-Ions.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.wg.Higgs.yaml b/projects/atlas.wg.Higgs.yaml index 8ad5b6211..9cbcb780b 100644 --- a/projects/atlas.wg.Higgs.yaml +++ b/projects/atlas.wg.Higgs.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.wg.Inner-Tracking.yaml b/projects/atlas.wg.Inner-Tracking.yaml index ecf94f730..120bf2006 100644 --- a/projects/atlas.wg.Inner-Tracking.yaml +++ b/projects/atlas.wg.Inner-Tracking.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.wg.Monte-Carlo.yaml b/projects/atlas.wg.Monte-Carlo.yaml index 6c5d2e3ba..c912ab577 100644 --- a/projects/atlas.wg.Monte-Carlo.yaml +++ b/projects/atlas.wg.Monte-Carlo.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.wg.SUSY.yaml b/projects/atlas.wg.SUSY.yaml index 73297dbcb..4e46a9c52 100644 --- a/projects/atlas.wg.SUSY.yaml +++ b/projects/atlas.wg.SUSY.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.wg.Standard-Model.yaml b/projects/atlas.wg.Standard-Model.yaml index aeabab0bd..24b3f8eba 100644 --- a/projects/atlas.wg.Standard-Model.yaml +++ b/projects/atlas.wg.Standard-Model.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.wg.Top.yaml b/projects/atlas.wg.Top.yaml index 5518e74a4..a7c342341 100644 --- a/projects/atlas.wg.Top.yaml +++ b/projects/atlas.wg.Top.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/atlas.wg.USAtlas-TechSupport.yaml b/projects/atlas.wg.USAtlas-TechSupport.yaml index 2692d1e86..2789a0fc4 100644 --- a/projects/atlas.wg.USAtlas-TechSupport.yaml +++ b/projects/atlas.wg.USAtlas-TechSupport.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/atlas.wg.combined-muon.yaml b/projects/atlas.wg.combined-muon.yaml index ef324be51..f4a649f7f 100644 --- a/projects/atlas.wg.combined-muon.yaml +++ b/projects/atlas.wg.combined-muon.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: ATLAS Connect +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/bdttpdblend.yaml b/projects/bdttpdblend.yaml index c111ace11..54a6ca846 100644 --- a/projects/bdttpdblend.yaml +++ b/projects/bdttpdblend.yaml @@ -12,3 +12,4 @@ PIName: Eric Jankowski Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/qqv9wksxyp5i' diff --git a/projects/bobbot.yaml b/projects/bobbot.yaml index ecdaca461..e182d6088 100644 --- a/projects/bobbot.yaml +++ b/projects/bobbot.yaml @@ -7,3 +7,4 @@ PIName: Daniel I Goldman Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/boostconf.yaml b/projects/boostconf.yaml index 76f8f7b7a..e1956847d 100644 --- a/projects/boostconf.yaml +++ b/projects/boostconf.yaml @@ -8,3 +8,4 @@ PIName: David Wilkins Miller Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/brainlifeio.yaml b/projects/brainlifeio.yaml index ab1fb8911..1e4ef2654 100644 --- a/projects/brainlifeio.yaml +++ b/projects/brainlifeio.yaml @@ -9,3 +9,4 @@ ID: '539' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uws6kivcttuc' diff --git a/projects/cellpainting.yaml b/projects/cellpainting.yaml index 70bde5977..92b554859 100644 --- a/projects/cellpainting.yaml +++ b/projects/cellpainting.yaml @@ -30,3 +30,4 @@ PIName: Shantanu Singh Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/e9m0sui7r154' diff --git a/projects/cgdna.yaml b/projects/cgdna.yaml index 6f4d9a259..40018de4c 100644 --- a/projects/cgdna.yaml +++ b/projects/cgdna.yaml @@ -11,3 +11,4 @@ PIName: Juan J de Pablo Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/cgl.yaml b/projects/cgl.yaml index 0e8227852..bb9c54af6 100644 --- a/projects/cgl.yaml +++ b/projects/cgl.yaml @@ -8,3 +8,4 @@ PIName: Jason H. Moore Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nv2rjrft01gg' diff --git a/projects/chemml.yaml b/projects/chemml.yaml index c9e92df9f..bc337d49f 100644 --- a/projects/chemml.yaml +++ b/projects/chemml.yaml @@ -9,3 +9,4 @@ ID: '576' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2ayx10b74xua' diff --git a/projects/clarkson_mondal.yaml b/projects/clarkson_mondal.yaml index 99bdacde1..fb3e21443 100644 --- a/projects/clarkson_mondal.yaml +++ b/projects/clarkson_mondal.yaml @@ -7,3 +7,4 @@ PIName: Sumona Mondal Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o2qtl8pbjmss' diff --git a/projects/clas12MC.yaml b/projects/clas12MC.yaml index db8f5ff1a..486ed11bf 100644 --- a/projects/clas12MC.yaml +++ b/projects/clas12MC.yaml @@ -8,3 +8,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/hlz41oydapzn' diff --git a/projects/cms-org-baylor.yaml b/projects/cms-org-baylor.yaml index 247be46a0..1c0063360 100644 --- a/projects/cms-org-baylor.yaml +++ b/projects/cms-org-baylor.yaml @@ -7,3 +7,4 @@ PIName: Kenichi Hatakeyama Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/c8uhtb8bojit' diff --git a/projects/cms-org-cern.yaml b/projects/cms-org-cern.yaml index 0cd21ac65..6039674e0 100644 --- a/projects/cms-org-cern.yaml +++ b/projects/cms-org-cern.yaml @@ -7,3 +7,4 @@ PIName: Achille Petrilli Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/8alpqdbfmj7m' diff --git a/projects/cms-org-nd.yaml b/projects/cms-org-nd.yaml index 37979b18c..558f271bd 100644 --- a/projects/cms-org-nd.yaml +++ b/projects/cms-org-nd.yaml @@ -7,3 +7,4 @@ PIName: Kevin Lannon Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/mavkovkq2s0l' diff --git a/projects/cms.org.baylor.yaml b/projects/cms.org.baylor.yaml index c77c7d5f1..f6efca2ca 100644 --- a/projects/cms.org.baylor.yaml +++ b/projects/cms.org.baylor.yaml @@ -7,3 +7,4 @@ PIName: Kenichi Hatakeyama Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/c8uhtb8bojit' diff --git a/projects/cms.org.brown.yaml b/projects/cms.org.brown.yaml index 821f2101f..4c6ec190e 100644 --- a/projects/cms.org.brown.yaml +++ b/projects/cms.org.brown.yaml @@ -7,3 +7,4 @@ PIName: Meenakshi Narain Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/0ytxfy0n4hol' diff --git a/projects/cms.org.bu.yaml b/projects/cms.org.bu.yaml index e0d753b87..ecc1cb8d1 100644 --- a/projects/cms.org.bu.yaml +++ b/projects/cms.org.bu.yaml @@ -7,3 +7,4 @@ PIName: Jim Rohlf Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/drujeuinri1g' diff --git a/projects/cms.org.buffalo.yaml b/projects/cms.org.buffalo.yaml index fe4ef03f4..be2df02d2 100644 --- a/projects/cms.org.buffalo.yaml +++ b/projects/cms.org.buffalo.yaml @@ -7,3 +7,4 @@ PIName: Avto Kharchilava Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/1cze98vy4hfm' diff --git a/projects/cms.org.caltech.yaml b/projects/cms.org.caltech.yaml index 483773b47..f7b452c52 100644 --- a/projects/cms.org.caltech.yaml +++ b/projects/cms.org.caltech.yaml @@ -7,3 +7,4 @@ PIName: Harvey Newman Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/m9rrh8ld1wyh' diff --git a/projects/cms.org.cern.yaml b/projects/cms.org.cern.yaml index caa69c6e3..dc72a120e 100644 --- a/projects/cms.org.cern.yaml +++ b/projects/cms.org.cern.yaml @@ -7,3 +7,4 @@ PIName: Achille Petrilli Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/8alpqdbfmj7m' diff --git a/projects/cms.org.cmu.yaml b/projects/cms.org.cmu.yaml index 2eafd9b9b..f4f78f45f 100644 --- a/projects/cms.org.cmu.yaml +++ b/projects/cms.org.cmu.yaml @@ -7,3 +7,4 @@ PIName: Manfred Paulini Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/3cqqrc2cgibl' diff --git a/projects/cms.org.colorado.yaml b/projects/cms.org.colorado.yaml index be172bada..fdc5e1a39 100644 --- a/projects/cms.org.colorado.yaml +++ b/projects/cms.org.colorado.yaml @@ -7,3 +7,4 @@ PIName: Douglas Johnson Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/gpeckuwpdnrs' diff --git a/projects/cms.org.cornell.yaml b/projects/cms.org.cornell.yaml index d02a4eb6b..58096269d 100644 --- a/projects/cms.org.cornell.yaml +++ b/projects/cms.org.cornell.yaml @@ -7,3 +7,4 @@ PIName: Jim Alexander Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/0lcrhlbjpu9r' diff --git a/projects/cms.org.fairfield.yaml b/projects/cms.org.fairfield.yaml index 5f3b65b94..06cccab9a 100644 --- a/projects/cms.org.fairfield.yaml +++ b/projects/cms.org.fairfield.yaml @@ -7,3 +7,4 @@ PIName: Dave Winn Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/j7cdzoql3356' diff --git a/projects/cms.org.fit.yaml b/projects/cms.org.fit.yaml index c8e043efc..1292173dc 100644 --- a/projects/cms.org.fit.yaml +++ b/projects/cms.org.fit.yaml @@ -7,3 +7,4 @@ PIName: Marc Baarmand Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/o4qs4gpcylcj' diff --git a/projects/cms.org.fiu.yaml b/projects/cms.org.fiu.yaml index 61cfdb6f7..9c15d0fa4 100644 --- a/projects/cms.org.fiu.yaml +++ b/projects/cms.org.fiu.yaml @@ -7,3 +7,4 @@ PIName: Pete Markowitz Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/gyqnlof5dslq' diff --git a/projects/cms.org.fnal.yaml b/projects/cms.org.fnal.yaml index dfb110954..b0ea3bcfa 100644 --- a/projects/cms.org.fnal.yaml +++ b/projects/cms.org.fnal.yaml @@ -7,3 +7,4 @@ PIName: Lothar Bauerdick Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/cms.org.fsu.yaml b/projects/cms.org.fsu.yaml index 4670ad259..69f143821 100644 --- a/projects/cms.org.fsu.yaml +++ b/projects/cms.org.fsu.yaml @@ -7,3 +7,4 @@ PIName: Todd Adams Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/0yddmgnh2xl5' diff --git a/projects/cms.org.jhu.yaml b/projects/cms.org.jhu.yaml index 668a7f5ad..2136cca7d 100644 --- a/projects/cms.org.jhu.yaml +++ b/projects/cms.org.jhu.yaml @@ -7,3 +7,4 @@ PIName: Morris Swartz Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/3fml5tx2uhe0' diff --git a/projects/cms.org.ksu.yaml b/projects/cms.org.ksu.yaml index 99662d193..5e982b527 100644 --- a/projects/cms.org.ksu.yaml +++ b/projects/cms.org.ksu.yaml @@ -7,3 +7,4 @@ PIName: Yurii Maravin Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/kxvagjjgn71t' diff --git a/projects/cms.org.ku.yaml b/projects/cms.org.ku.yaml index 57944f575..7901bcd7e 100644 --- a/projects/cms.org.ku.yaml +++ b/projects/cms.org.ku.yaml @@ -7,3 +7,4 @@ PIName: Alice Bean Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/3dxfebv9ibby' diff --git a/projects/cms.org.llnl.yaml b/projects/cms.org.llnl.yaml index 1cc721e1a..42a707a29 100644 --- a/projects/cms.org.llnl.yaml +++ b/projects/cms.org.llnl.yaml @@ -7,3 +7,4 @@ PIName: Doug Wright Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/p4yzz1wxq2g3' diff --git a/projects/cms.org.mit.yaml b/projects/cms.org.mit.yaml index 73c569350..2a733f2cb 100644 --- a/projects/cms.org.mit.yaml +++ b/projects/cms.org.mit.yaml @@ -7,3 +7,4 @@ PIName: Christoph Paus Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/cms.org.nd.yaml b/projects/cms.org.nd.yaml index 33338de78..122a0bdd7 100644 --- a/projects/cms.org.nd.yaml +++ b/projects/cms.org.nd.yaml @@ -7,3 +7,4 @@ PIName: Kevin Lannon Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/mavkovkq2s0l' diff --git a/projects/cms.org.neu.yaml b/projects/cms.org.neu.yaml index b16a0db06..e503c3c15 100644 --- a/projects/cms.org.neu.yaml +++ b/projects/cms.org.neu.yaml @@ -7,3 +7,4 @@ PIName: Emanuela Barbaris Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/454t2lfhcfpp' diff --git a/projects/cms.org.northwestern.yaml b/projects/cms.org.northwestern.yaml index c082e8b45..a81cae4c1 100644 --- a/projects/cms.org.northwestern.yaml +++ b/projects/cms.org.northwestern.yaml @@ -7,3 +7,4 @@ PIName: Mayda Velasco Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/5vvknn2bzgvt' diff --git a/projects/cms.org.ohiostate.yaml b/projects/cms.org.ohiostate.yaml index 6fe5f8c4e..220e202b5 100644 --- a/projects/cms.org.ohiostate.yaml +++ b/projects/cms.org.ohiostate.yaml @@ -7,3 +7,4 @@ PIName: Stan Durkin Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/984ms2rzh7do' diff --git a/projects/cms.org.olemiss.yaml b/projects/cms.org.olemiss.yaml index 7f98638aa..397ff3f46 100644 --- a/projects/cms.org.olemiss.yaml +++ b/projects/cms.org.olemiss.yaml @@ -7,3 +7,4 @@ PIName: Lucien Cremaldi Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/bigpgrrmxblz' diff --git a/projects/cms.org.princeton.yaml b/projects/cms.org.princeton.yaml index f12f3435d..349b24d5c 100644 --- a/projects/cms.org.princeton.yaml +++ b/projects/cms.org.princeton.yaml @@ -7,3 +7,4 @@ PIName: Dan Marlow Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/ao845i5pul3m' diff --git a/projects/cms.org.purdue.yaml b/projects/cms.org.purdue.yaml index 6feb5b9e5..73f9d856c 100644 --- a/projects/cms.org.purdue.yaml +++ b/projects/cms.org.purdue.yaml @@ -7,3 +7,4 @@ PIName: Norbert Neumeister Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/y2m2tk3a8pp6' diff --git a/projects/cms.org.purduecal.yaml b/projects/cms.org.purduecal.yaml index 2de213b76..81daaa443 100644 --- a/projects/cms.org.purduecal.yaml +++ b/projects/cms.org.purduecal.yaml @@ -7,3 +7,4 @@ PIName: Neeti Parashar Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: "https://osg-htc.org/iid/hwghxctrdgzw" diff --git a/projects/cms.org.rice.yaml b/projects/cms.org.rice.yaml index e088a0eb7..2ac8d3565 100644 --- a/projects/cms.org.rice.yaml +++ b/projects/cms.org.rice.yaml @@ -7,3 +7,4 @@ PIName: Jay Roberts Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/mqyva49x2em4' diff --git a/projects/cms.org.rochester.yaml b/projects/cms.org.rochester.yaml index 1d5c8d62e..179e5b221 100644 --- a/projects/cms.org.rochester.yaml +++ b/projects/cms.org.rochester.yaml @@ -7,3 +7,4 @@ PIName: Regina Demina Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/v3s5cj6tgrvz' diff --git a/projects/cms.org.rockefeller.yaml b/projects/cms.org.rockefeller.yaml index 9aedfaa7c..934dcf723 100644 --- a/projects/cms.org.rockefeller.yaml +++ b/projects/cms.org.rockefeller.yaml @@ -7,3 +7,4 @@ PIName: Dino Goulianos Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/aqxl1a73eq99' diff --git a/projects/cms.org.rutgers.yaml b/projects/cms.org.rutgers.yaml index 45cde3c4a..fa0009aae 100644 --- a/projects/cms.org.rutgers.yaml +++ b/projects/cms.org.rutgers.yaml @@ -7,3 +7,4 @@ PIName: Amit Lath Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/qrem5k97ikiv' diff --git a/projects/cms.org.tamu.yaml b/projects/cms.org.tamu.yaml index 83d50c3f1..875fa10e8 100644 --- a/projects/cms.org.tamu.yaml +++ b/projects/cms.org.tamu.yaml @@ -7,3 +7,4 @@ PIName: Alexei Safonov Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/8wqbbz4i2cma' diff --git a/projects/cms.org.ttu.yaml b/projects/cms.org.ttu.yaml index 4f4a711a4..ea23226a3 100644 --- a/projects/cms.org.ttu.yaml +++ b/projects/cms.org.ttu.yaml @@ -7,3 +7,4 @@ PIName: Nural Akchurin Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/dm49jc7i86zx' diff --git a/projects/cms.org.ua.yaml b/projects/cms.org.ua.yaml index 65f24e304..93ef0c94e 100644 --- a/projects/cms.org.ua.yaml +++ b/projects/cms.org.ua.yaml @@ -7,3 +7,4 @@ PIName: Conor Henderson Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/h3mnbxmdwx24' diff --git a/projects/cms.org.ucdavis.yaml b/projects/cms.org.ucdavis.yaml index 12f7be819..36b264546 100644 --- a/projects/cms.org.ucdavis.yaml +++ b/projects/cms.org.ucdavis.yaml @@ -7,3 +7,4 @@ PIName: John Conway Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/f62wuiqfjmxm' diff --git a/projects/cms.org.ucla.yaml b/projects/cms.org.ucla.yaml index 7f8862793..7e1a26b12 100644 --- a/projects/cms.org.ucla.yaml +++ b/projects/cms.org.ucla.yaml @@ -7,3 +7,4 @@ PIName: Jay Hauser Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/4vhk41w4vvn6' diff --git a/projects/cms.org.ucr.yaml b/projects/cms.org.ucr.yaml index 6d770bdf6..8e00ef017 100644 --- a/projects/cms.org.ucr.yaml +++ b/projects/cms.org.ucr.yaml @@ -7,3 +7,4 @@ PIName: Gail Hanson Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/zy99b9jjoqpb' diff --git a/projects/cms.org.ucsb.yaml b/projects/cms.org.ucsb.yaml index cfc1bcb4a..10636dd91 100644 --- a/projects/cms.org.ucsb.yaml +++ b/projects/cms.org.ucsb.yaml @@ -7,3 +7,4 @@ PIName: Joe Incandela Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/rglo22hiw2ge' diff --git a/projects/cms.org.ucsd.yaml b/projects/cms.org.ucsd.yaml index d6e6c6b06..2a87d607d 100644 --- a/projects/cms.org.ucsd.yaml +++ b/projects/cms.org.ucsd.yaml @@ -7,3 +7,4 @@ PIName: Frank Wuerthwein Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/cms.org.ufl.yaml b/projects/cms.org.ufl.yaml index 65d16053b..866b245d7 100644 --- a/projects/cms.org.ufl.yaml +++ b/projects/cms.org.ufl.yaml @@ -7,3 +7,4 @@ PIName: Gena Mitselmakher Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/84k5udeuw65m' diff --git a/projects/cms.org.uic.yaml b/projects/cms.org.uic.yaml index d17635e01..851ad0ccb 100644 --- a/projects/cms.org.uic.yaml +++ b/projects/cms.org.uic.yaml @@ -7,3 +7,4 @@ PIName: Nikos Varelas Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/y691qclum4cv' diff --git a/projects/cms.org.uiowa.yaml b/projects/cms.org.uiowa.yaml index 176bab37b..e03473174 100644 --- a/projects/cms.org.uiowa.yaml +++ b/projects/cms.org.uiowa.yaml @@ -7,3 +7,4 @@ PIName: Yasar Onel Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/2eafckbgu51c' diff --git a/projects/cms.org.umd.yaml b/projects/cms.org.umd.yaml index 1a6a6a6b4..9e7a71938 100644 --- a/projects/cms.org.umd.yaml +++ b/projects/cms.org.umd.yaml @@ -7,3 +7,4 @@ PIName: Andris Skuja Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/h5syhdikri9a' diff --git a/projects/cms.org.umn.yaml b/projects/cms.org.umn.yaml index 3e4c24f33..e0773897d 100644 --- a/projects/cms.org.umn.yaml +++ b/projects/cms.org.umn.yaml @@ -7,3 +7,4 @@ PIName: Roger Rusack Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/3chofmlz7p5r' diff --git a/projects/cms.org.unl.yaml b/projects/cms.org.unl.yaml index e447aeaee..3b27274aa 100644 --- a/projects/cms.org.unl.yaml +++ b/projects/cms.org.unl.yaml @@ -7,3 +7,4 @@ PIName: Kenneth Bloom Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/cms.org.upr.yaml b/projects/cms.org.upr.yaml index b0af6a001..83bcaab8d 100644 --- a/projects/cms.org.upr.yaml +++ b/projects/cms.org.upr.yaml @@ -7,3 +7,4 @@ PIName: Malik Sudhir Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/43gwnkrodhv9' diff --git a/projects/cms.org.utk.yaml b/projects/cms.org.utk.yaml index 6546fe69c..a8bce00a4 100644 --- a/projects/cms.org.utk.yaml +++ b/projects/cms.org.utk.yaml @@ -7,3 +7,4 @@ PIName: Stefan Spanier Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/hp8930spi37u' diff --git a/projects/cms.org.vanderbilt.yaml b/projects/cms.org.vanderbilt.yaml index f192346d8..6ad699094 100644 --- a/projects/cms.org.vanderbilt.yaml +++ b/projects/cms.org.vanderbilt.yaml @@ -7,3 +7,4 @@ PIName: Will Johns Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/7bgts07ydpxp' diff --git a/projects/cms.org.virginia.yaml b/projects/cms.org.virginia.yaml index e7a774ea3..18a19d90e 100644 --- a/projects/cms.org.virginia.yaml +++ b/projects/cms.org.virginia.yaml @@ -7,3 +7,4 @@ PIName: Brad Cox Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/qr5lr81ioeu4' diff --git a/projects/cms.org.wayne.yaml b/projects/cms.org.wayne.yaml index 9a44e9d2f..9ffeec46d 100644 --- a/projects/cms.org.wayne.yaml +++ b/projects/cms.org.wayne.yaml @@ -7,3 +7,4 @@ PIName: Paul Karchin Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/d54pf46v5aqz' diff --git a/projects/cms.org.wisc.yaml b/projects/cms.org.wisc.yaml index 0d5ddee70..3e1f44b10 100644 --- a/projects/cms.org.wisc.yaml +++ b/projects/cms.org.wisc.yaml @@ -7,3 +7,4 @@ PIName: Wesley Smith Sponsor: CampusGrid: Name: CMS Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/colorcat.yaml b/projects/colorcat.yaml index af78d8558..14938d52d 100644 --- a/projects/colorcat.yaml +++ b/projects/colorcat.yaml @@ -17,3 +17,4 @@ PIName: Joshua B. Plotkin Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nv2rjrft01gg' diff --git a/projects/compcomb.yaml b/projects/compcomb.yaml index 9b5a95c21..f0f6ca46f 100644 --- a/projects/compcomb.yaml +++ b/projects/compcomb.yaml @@ -8,3 +8,4 @@ PIName: Derrick Stolee Sponsor: VirtualOrganization: Name: HCC +InstitutionID: 'https://osg-htc.org/iid/wbwnw037cybm' diff --git a/projects/cyverse.yaml b/projects/cyverse.yaml index 5d2fad3d4..3a3ec6cbc 100644 --- a/projects/cyverse.yaml +++ b/projects/cyverse.yaml @@ -10,3 +10,4 @@ PIName: Nirav Merchant Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/dVdT.yaml b/projects/dVdT.yaml index 35fc33096..6abc31f0e 100644 --- a/projects/dVdT.yaml +++ b/projects/dVdT.yaml @@ -15,3 +15,4 @@ PIName: Ewa Deelman Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/6edduwj65dlr' diff --git a/projects/darkside.yaml b/projects/darkside.yaml index a075241b1..badc26234 100644 --- a/projects/darkside.yaml +++ b/projects/darkside.yaml @@ -7,3 +7,4 @@ PIName: Joe Boyd Sponsor: VirtualOrganization: Name: Darkside +InstitutionID: "https://osg-htc.org/iid/mktiwfxf07og" diff --git a/projects/ddpscbioinfo.yaml b/projects/ddpscbioinfo.yaml index cbe6aa269..e7ffe4fbd 100644 --- a/projects/ddpscbioinfo.yaml +++ b/projects/ddpscbioinfo.yaml @@ -11,3 +11,4 @@ PIName: Noah Fahlgren Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/rsgxpux8bm0h' diff --git a/projects/duke-4fermion.yaml b/projects/duke-4fermion.yaml index a913cf9c1..ba178562a 100644 --- a/projects/duke-4fermion.yaml +++ b/projects/duke-4fermion.yaml @@ -8,3 +8,4 @@ PIName: Shailesh Chandrasekharan Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/duke-CMT.yaml b/projects/duke-CMT.yaml index 037d61b91..c4eec3a3b 100644 --- a/projects/duke-CMT.yaml +++ b/projects/duke-CMT.yaml @@ -11,3 +11,4 @@ PIName: Harold U. Baranger Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/duke-EfficientScore.yaml b/projects/duke-EfficientScore.yaml index ff6d24bd7..cc24332d2 100644 --- a/projects/duke-EfficientScore.yaml +++ b/projects/duke-EfficientScore.yaml @@ -7,3 +7,4 @@ PIName: Konosuke Iwamoto Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/duke-SWC-Duke15.yaml b/projects/duke-SWC-Duke15.yaml index 932113d41..9c2fabbbb 100644 --- a/projects/duke-SWC-Duke15.yaml +++ b/projects/duke-SWC-Duke15.yaml @@ -7,3 +7,4 @@ PIName: Mark R. DeLong Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/duke-WaterCrystal.yaml b/projects/duke-WaterCrystal.yaml index ba75c6e3e..c2b859a28 100644 --- a/projects/duke-WaterCrystal.yaml +++ b/projects/duke-WaterCrystal.yaml @@ -7,3 +7,4 @@ PIName: Patrick Charbonneau Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/duke-bgswgs.yaml b/projects/duke-bgswgs.yaml index fc1f46d1f..d698908f4 100644 --- a/projects/duke-bgswgs.yaml +++ b/projects/duke-bgswgs.yaml @@ -7,3 +7,4 @@ PIName: Hai Yan Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/duke-boolnet.yaml b/projects/duke-boolnet.yaml index f5068e879..9212385a1 100644 --- a/projects/duke-boolnet.yaml +++ b/projects/duke-boolnet.yaml @@ -8,3 +8,4 @@ PIName: Daniel Gauthier Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/duke-campus.yaml b/projects/duke-campus.yaml index 1adc12cbb..d47fc70e3 100644 --- a/projects/duke-campus.yaml +++ b/projects/duke-campus.yaml @@ -7,3 +7,4 @@ PIName: Tom Milledge Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/duke-staff.yaml b/projects/duke-staff.yaml index 03e33b663..a8834f8bb 100644 --- a/projects/duke-staff.yaml +++ b/projects/duke-staff.yaml @@ -7,3 +7,4 @@ PIName: Tom Milledge Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/duke-swcstaff.yaml b/projects/duke-swcstaff.yaml index 354e263db..99670e1cf 100644 --- a/projects/duke-swcstaff.yaml +++ b/projects/duke-swcstaff.yaml @@ -9,3 +9,4 @@ PIName: Mark R. DeLong Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/duke.lsst.yaml b/projects/duke.lsst.yaml index bb9bd42bc..bdd646098 100644 --- a/projects/duke.lsst.yaml +++ b/projects/duke.lsst.yaml @@ -7,3 +7,4 @@ PIName: Steven Kahn Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/duke.ppsa.yaml b/projects/duke.ppsa.yaml index 623c21a4c..0bda51181 100644 --- a/projects/duke.ppsa.yaml +++ b/projects/duke.ppsa.yaml @@ -7,3 +7,4 @@ PIName: Irem Altan Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/dynamo.yaml b/projects/dynamo.yaml index 4fc7402c5..628e4b9d5 100644 --- a/projects/dynamo.yaml +++ b/projects/dynamo.yaml @@ -12,3 +12,4 @@ PIName: Asher Wasserman Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/n6cai04882ca' diff --git a/projects/ePIC.yaml b/projects/ePIC.yaml index 0d3aa1337..c93379393 100644 --- a/projects/ePIC.yaml +++ b/projects/ePIC.yaml @@ -6,3 +6,4 @@ PIName: John Lajoie Sponsor: VirtualOrganization: Name: EIC +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/eht.yaml b/projects/eht.yaml index d9975544e..3b1d56dde 100644 --- a/projects/eht.yaml +++ b/projects/eht.yaml @@ -9,3 +9,4 @@ ID: '531' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/electrolytes.yaml b/projects/electrolytes.yaml index ea9aaf11c..fdf63f5bf 100644 --- a/projects/electrolytes.yaml +++ b/projects/electrolytes.yaml @@ -10,3 +10,4 @@ PIName: Jesse McDaniel Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uvf22j6xjbtv' diff --git a/projects/errorstudy.yaml b/projects/errorstudy.yaml index e144ac27e..e7dc0e39f 100644 --- a/projects/errorstudy.yaml +++ b/projects/errorstudy.yaml @@ -28,3 +28,4 @@ PIName: Christopher Richards Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/04zshkcip94w' diff --git a/projects/evolmarinva.yaml b/projects/evolmarinva.yaml index 73e8b7215..a7d6e50fd 100644 --- a/projects/evolmarinva.yaml +++ b/projects/evolmarinva.yaml @@ -8,3 +8,4 @@ PIName: Erik Sotka Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/feign8xjq7s1' diff --git a/projects/extinction.yaml b/projects/extinction.yaml index a23239f73..802613192 100644 --- a/projects/extinction.yaml +++ b/projects/extinction.yaml @@ -9,3 +9,4 @@ PIName: Shripad Tuljapurkar Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/fluidsim.yaml b/projects/fluidsim.yaml index 9fbdc7e7d..39870d5fa 100644 --- a/projects/fluidsim.yaml +++ b/projects/fluidsim.yaml @@ -8,3 +8,4 @@ PIName: Erkan Tuzel Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ndhm574vy927' diff --git a/projects/freesurfer.yaml b/projects/freesurfer.yaml index 65ef384e6..7601759bb 100644 --- a/projects/freesurfer.yaml +++ b/projects/freesurfer.yaml @@ -7,3 +7,4 @@ PIName: Donald Krieger Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2ayx10b74xua' diff --git a/projects/fsuFin.yaml b/projects/fsuFin.yaml index 336d1975e..5185a45a3 100644 --- a/projects/fsuFin.yaml +++ b/projects/fsuFin.yaml @@ -7,3 +7,4 @@ PIName: François Cocquemas Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0yddmgnh2xl5' diff --git a/projects/g4PSI.yaml b/projects/g4PSI.yaml index 53387e007..883afe2b0 100644 --- a/projects/g4PSI.yaml +++ b/projects/g4PSI.yaml @@ -9,3 +9,4 @@ PIName: Wolfgang Lorenzon Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/gem5.yaml b/projects/gem5.yaml index ba638a8bc..06ca71520 100644 --- a/projects/gem5.yaml +++ b/projects/gem5.yaml @@ -9,3 +9,4 @@ PIName: Dean Tullsen Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/glass.yaml b/projects/glass.yaml index 6ed6a5876..4919e052f 100644 --- a/projects/glass.yaml +++ b/projects/glass.yaml @@ -13,3 +13,4 @@ PIName: Patrick Charbonneau Sponsor: CampusGrid: Name: Duke +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/gm2.yaml b/projects/gm2.yaml index 43e1a511a..928d55d12 100644 --- a/projects/gm2.yaml +++ b/projects/gm2.yaml @@ -7,3 +7,4 @@ PIName: Joe Boyd Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/gridsgenomes.yaml b/projects/gridsgenomes.yaml index 30e94d1af..0ea7b9ca2 100644 --- a/projects/gridsgenomes.yaml +++ b/projects/gridsgenomes.yaml @@ -16,3 +16,4 @@ PIName: David Rhee Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/yzcm7hs9f1d0' diff --git a/projects/hABCNWHI.yaml b/projects/hABCNWHI.yaml index 7310bb146..128fcc77e 100644 --- a/projects/hABCNWHI.yaml +++ b/projects/hABCNWHI.yaml @@ -28,3 +28,4 @@ PIName: Yvonne Chan Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7a8v0ry5p83u' diff --git a/projects/holosim.yaml b/projects/holosim.yaml index e5464a9ad..3fa10fd86 100644 --- a/projects/holosim.yaml +++ b/projects/holosim.yaml @@ -7,3 +7,4 @@ PIName: Allan Strand Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/feign8xjq7s1' diff --git a/projects/icarus.yaml b/projects/icarus.yaml index 0b33aa99b..6b838db23 100644 --- a/projects/icarus.yaml +++ b/projects/icarus.yaml @@ -7,3 +7,4 @@ PIName: Carlo Rubbia Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/idTrackerParallel.yaml b/projects/idTrackerParallel.yaml index f7f6c7b0f..be230f7f9 100644 --- a/projects/idTrackerParallel.yaml +++ b/projects/idTrackerParallel.yaml @@ -8,3 +8,4 @@ PIName: Andrew Ruether Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/a9u068qpwh85' diff --git a/projects/lftsim.yaml b/projects/lftsim.yaml index ae28105c8..a26619008 100644 --- a/projects/lftsim.yaml +++ b/projects/lftsim.yaml @@ -10,3 +10,4 @@ PIName: Joel Giedt Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/z9jynyyvt051' diff --git a/projects/lychrelsearch.yaml b/projects/lychrelsearch.yaml index 91082565b..ac6fc6753 100644 --- a/projects/lychrelsearch.yaml +++ b/projects/lychrelsearch.yaml @@ -9,3 +9,4 @@ PIName: James P. Howard, II Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/3fml5tx2uhe0' diff --git a/projects/mab.yaml b/projects/mab.yaml index aeb0d1bab..9ba5ac1af 100644 --- a/projects/mab.yaml +++ b/projects/mab.yaml @@ -7,3 +7,4 @@ PIName: Vivek Farias Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/jtlq7k0qkxtn' diff --git a/projects/macsSwigmodels.yaml b/projects/macsSwigmodels.yaml index 4479321b8..6605cc3c7 100644 --- a/projects/macsSwigmodels.yaml +++ b/projects/macsSwigmodels.yaml @@ -21,3 +21,4 @@ PIName: Ariella Gladstein Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/mars.yaml b/projects/mars.yaml index 2a9dd5215..bdb121018 100644 --- a/projects/mars.yaml +++ b/projects/mars.yaml @@ -7,3 +7,4 @@ PIName: Joe Boyd Sponsor: VirtualOrganization: Name: Fermilab +InstitutionID: 'https://osg-htc.org/iid/ik4s3ql8u1j7' diff --git a/projects/megaprobe.yaml b/projects/megaprobe.yaml index 224d3ba51..142d20ab4 100644 --- a/projects/megaprobe.yaml +++ b/projects/megaprobe.yaml @@ -7,3 +7,4 @@ PIName: Humberto Ortiz-Zuazaga Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/43gwnkrodhv9' diff --git a/projects/microphases.yaml b/projects/microphases.yaml index 291b1505a..0be1e6a92 100644 --- a/projects/microphases.yaml +++ b/projects/microphases.yaml @@ -13,3 +13,4 @@ PIName: Patrick Charbonneau Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/v0pbd5jfz81s' diff --git a/projects/molcryst.yaml b/projects/molcryst.yaml index 0b21c94a5..0e9b112aa 100644 --- a/projects/molcryst.yaml +++ b/projects/molcryst.yaml @@ -8,3 +8,4 @@ PIName: Olexandr Isayev Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nhz3r9d0308l' diff --git a/projects/mortality.yaml b/projects/mortality.yaml index 757ce634c..3b679a457 100644 --- a/projects/mortality.yaml +++ b/projects/mortality.yaml @@ -8,3 +8,4 @@ PIName: Shripad Tuljapurkar Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/keucrg5vtwtm' diff --git a/projects/mwt2-staff.yaml b/projects/mwt2-staff.yaml index 10a21da95..00ca4a960 100644 --- a/projects/mwt2-staff.yaml +++ b/projects/mwt2-staff.yaml @@ -9,3 +9,4 @@ ID: '777' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/nEXO.yaml b/projects/nEXO.yaml index 457305e83..c18263ab3 100644 --- a/projects/nEXO.yaml +++ b/projects/nEXO.yaml @@ -9,3 +9,4 @@ PIName: Raymond Tsang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/lh31n2nsjoyt' diff --git a/projects/ncidft.yaml b/projects/ncidft.yaml index 09500f613..b2300b78b 100644 --- a/projects/ncidft.yaml +++ b/projects/ncidft.yaml @@ -12,3 +12,4 @@ PIName: Alberto Otero de la Roza Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/nklmjlvthcfn' diff --git a/projects/networkdist.yaml b/projects/networkdist.yaml index e3a91bb61..fe38eaca5 100644 --- a/projects/networkdist.yaml +++ b/projects/networkdist.yaml @@ -7,3 +7,4 @@ PIName: James Saxon Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/nicesims.yaml b/projects/nicesims.yaml index 0d8ae6603..6e956a85f 100644 --- a/projects/nicesims.yaml +++ b/projects/nicesims.yaml @@ -15,3 +15,4 @@ PIName: Nathan Kaib Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/xvsrc4eixk2g' diff --git a/projects/nnmbl.yaml b/projects/nnmbl.yaml index 2e7e67dd8..9f28d47c3 100644 --- a/projects/nnmbl.yaml +++ b/projects/nnmbl.yaml @@ -15,3 +15,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/nsides.yaml b/projects/nsides.yaml index 4b78ebe56..16cb86dc0 100644 --- a/projects/nsides.yaml +++ b/projects/nsides.yaml @@ -8,3 +8,4 @@ PIName: Nicholas Tatonetti Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/avy4x5r4jsrw' diff --git a/projects/numfpi.yaml b/projects/numfpi.yaml index 2e615d4e2..9c7f80c71 100644 --- a/projects/numfpi.yaml +++ b/projects/numfpi.yaml @@ -16,3 +16,4 @@ PIName: Jerry Tessendorf Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ricyf18amt49' diff --git a/projects/oclab.yaml b/projects/oclab.yaml index c8b5f09c1..13e1ce267 100644 --- a/projects/oclab.yaml +++ b/projects/oclab.yaml @@ -7,3 +7,4 @@ PIName: Dave OConnor Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' diff --git a/projects/osg.Ceser.yaml b/projects/osg.Ceser.yaml index 91ca0c543..c36184d55 100644 --- a/projects/osg.Ceser.yaml +++ b/projects/osg.Ceser.yaml @@ -7,3 +7,4 @@ ID: 587 Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/panorama.yaml b/projects/panorama.yaml index c431b6b43..a9ade3cf3 100644 --- a/projects/panorama.yaml +++ b/projects/panorama.yaml @@ -7,3 +7,4 @@ PIName: Georgios Papadimitriou Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/6edduwj65dlr' diff --git a/projects/peers.yaml b/projects/peers.yaml index 3c739b7a1..bd2b8fd3f 100644 --- a/projects/peers.yaml +++ b/projects/peers.yaml @@ -13,3 +13,4 @@ PIName: Jessica Sidler Folsom Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0yddmgnh2xl5' diff --git a/projects/pipediffusion.yaml b/projects/pipediffusion.yaml index 500d7a93d..ef9984143 100644 --- a/projects/pipediffusion.yaml +++ b/projects/pipediffusion.yaml @@ -8,3 +8,4 @@ PIName: Panthea Sepehrband Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/2vxlc7g64qpj' diff --git a/projects/plantGRN.yaml b/projects/plantGRN.yaml index 6fc462701..89f5e5c11 100644 --- a/projects/plantGRN.yaml +++ b/projects/plantGRN.yaml @@ -17,3 +17,4 @@ PIName: Karen McGinnis Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/0yddmgnh2xl5' diff --git a/projects/polyHERV.yaml b/projects/polyHERV.yaml index fd8576288..517e1ab40 100644 --- a/projects/polyHERV.yaml +++ b/projects/polyHERV.yaml @@ -7,3 +7,4 @@ PIName: Gkikas Magiorkinis Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/rs6jusb08ogc' diff --git a/projects/polymer.yaml b/projects/polymer.yaml index 78f40ba97..317af51ed 100644 --- a/projects/polymer.yaml +++ b/projects/polymer.yaml @@ -9,3 +9,4 @@ PIName: rajmohan muthaiah Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/xvsrc4eixk2g' diff --git a/projects/popage.yaml b/projects/popage.yaml index 63391eb42..5e1d9cc57 100644 --- a/projects/popage.yaml +++ b/projects/popage.yaml @@ -8,3 +8,4 @@ PIName: Benjamin Rose Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mavkovkq2s0l' diff --git a/projects/poromech.yaml b/projects/poromech.yaml index 71a948170..15171acae 100644 --- a/projects/poromech.yaml +++ b/projects/poromech.yaml @@ -20,3 +20,4 @@ PIName: Stephen Moysey Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ricyf18amt49' diff --git a/projects/psims.yaml b/projects/psims.yaml index fab6a064c..c00f9b972 100644 --- a/projects/psims.yaml +++ b/projects/psims.yaml @@ -19,3 +19,4 @@ PIName: Joshua Elliott Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/psychosisfmri.yaml b/projects/psychosisfmri.yaml index 89fc3a272..33079f0c6 100644 --- a/projects/psychosisfmri.yaml +++ b/projects/psychosisfmri.yaml @@ -11,3 +11,4 @@ PIName: De Sa Nunes Correia Diogo Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/454t2lfhcfpp' diff --git a/projects/rencinrig.yaml b/projects/rencinrig.yaml index 2066c5c3e..f61bcc4ff 100644 --- a/projects/rencinrig.yaml +++ b/projects/rencinrig.yaml @@ -9,3 +9,4 @@ ID: '567' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/h7l0qel53a0t' diff --git a/projects/retrovision.yaml b/projects/retrovision.yaml index d7be33d2e..bd4df7c9a 100644 --- a/projects/retrovision.yaml +++ b/projects/retrovision.yaml @@ -12,3 +12,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/avy4x5r4jsrw' diff --git a/projects/sPHENIX.yaml b/projects/sPHENIX.yaml index 52869aa5f..da544e356 100644 --- a/projects/sPHENIX.yaml +++ b/projects/sPHENIX.yaml @@ -9,3 +9,4 @@ PIName: Martin Purschke Sponsor: VirtualOrganization: Name: OSG +InstitutionID: 'https://osg-htc.org/iid/g29k1hhqys0y' diff --git a/projects/scicomp-analytics.yaml b/projects/scicomp-analytics.yaml index 30d41bd68..6dd7f39b4 100644 --- a/projects/scicomp-analytics.yaml +++ b/projects/scicomp-analytics.yaml @@ -8,3 +8,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/selfassembly.yaml b/projects/selfassembly.yaml index b7f8490d0..ce7c59c95 100644 --- a/projects/selfassembly.yaml +++ b/projects/selfassembly.yaml @@ -10,3 +10,4 @@ PIName: Eddie Tysoe Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/812rlsqwylrc' diff --git a/projects/seq2fun.yaml b/projects/seq2fun.yaml index 352651047..b9248cd1d 100644 --- a/projects/seq2fun.yaml +++ b/projects/seq2fun.yaml @@ -9,3 +9,4 @@ PIName: Peter Freddolino Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/4ocf9kvq30fn' diff --git a/projects/snada.yaml b/projects/snada.yaml index c8cd70445..7b1a66c9a 100644 --- a/projects/snada.yaml +++ b/projects/snada.yaml @@ -7,3 +7,4 @@ PIName: Wei Wang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ozb6tv0up0g3' diff --git a/projects/snasim.yaml b/projects/snasim.yaml index a61b67d62..f30bf467e 100644 --- a/projects/snasim.yaml +++ b/projects/snasim.yaml @@ -9,3 +9,4 @@ PIName: Wei Wang Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/ozb6tv0up0g3' diff --git a/projects/spt.all.yaml b/projects/spt.all.yaml index b3c42671d..d9a41ef3a 100644 --- a/projects/spt.all.yaml +++ b/projects/spt.all.yaml @@ -11,3 +11,4 @@ PIName: John Carlstrom Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/srccoding.yaml b/projects/srccoding.yaml index 7c7d135ee..d8a4eddfb 100644 --- a/projects/srccoding.yaml +++ b/projects/srccoding.yaml @@ -7,3 +7,4 @@ PIName: Joerg Kliewer Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/zhy58gsknnaw' diff --git a/projects/steward.yaml b/projects/steward.yaml index d28ee1daa..47e5d6973 100644 --- a/projects/steward.yaml +++ b/projects/steward.yaml @@ -9,3 +9,4 @@ ID: '533' Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7rjyoz6kb8vq' diff --git a/projects/sugwg.yaml b/projects/sugwg.yaml index 7a55ad85a..d0a6d7fca 100644 --- a/projects/sugwg.yaml +++ b/projects/sugwg.yaml @@ -7,3 +7,4 @@ PIName: Duncan Brown Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/mzpz26kp0f3p' diff --git a/projects/sweeps.yaml b/projects/sweeps.yaml index 41c797098..74aa7a7bb 100644 --- a/projects/sweeps.yaml +++ b/projects/sweeps.yaml @@ -7,3 +7,4 @@ PIName: Murat Acar Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/np1w2l1semy5' diff --git a/projects/swipnanobio.yaml b/projects/swipnanobio.yaml index 95a2814ee..3fcf53939 100644 --- a/projects/swipnanobio.yaml +++ b/projects/swipnanobio.yaml @@ -11,3 +11,4 @@ Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/uws6kivcttuc' diff --git a/projects/sykclusters.yaml b/projects/sykclusters.yaml index 0ec334e38..cab916500 100644 --- a/projects/sykclusters.yaml +++ b/projects/sykclusters.yaml @@ -7,3 +7,4 @@ PIName: John McGreevy Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/06wup3aye2t7' diff --git a/projects/uchicago.yaml b/projects/uchicago.yaml index e29c4ec32..e985da5bd 100644 --- a/projects/uchicago.yaml +++ b/projects/uchicago.yaml @@ -7,3 +7,4 @@ PIName: Robert William Gardner Jr Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/unlcpass.yaml b/projects/unlcpass.yaml index b86c492a8..d098965c6 100644 --- a/projects/unlcpass.yaml +++ b/projects/unlcpass.yaml @@ -16,3 +16,4 @@ PIName: Adam Caprez Sponsor: VirtualOrganization: Name: HCC +InstitutionID: 'https://osg-htc.org/iid/q9k1b8dfrw25' diff --git a/projects/velev.yaml b/projects/velev.yaml index 78afef661..3bb74764c 100644 --- a/projects/velev.yaml +++ b/projects/velev.yaml @@ -8,3 +8,4 @@ PIName: Julian Velev Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/43gwnkrodhv9' diff --git a/projects/wrench.yaml b/projects/wrench.yaml index 6f1dcabb1..16ff2de97 100644 --- a/projects/wrench.yaml +++ b/projects/wrench.yaml @@ -7,3 +7,4 @@ PIName: Rafael Ferreira Da Silva Sponsor: CampusGrid: Name: ISI +InstitutionID: 'https://osg-htc.org/iid/6edduwj65dlr' diff --git a/projects/xenon.yaml b/projects/xenon.yaml index 5a40f8cde..6dc6d90b9 100644 --- a/projects/xenon.yaml +++ b/projects/xenon.yaml @@ -15,3 +15,4 @@ Organization: University of Chicago PIName: Luca Grandi +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/xenon1t.yaml b/projects/xenon1t.yaml index ebc47c83a..49c1dcbef 100644 --- a/projects/xenon1t.yaml +++ b/projects/xenon1t.yaml @@ -30,3 +30,4 @@ ResourceAllocations: - GroupName: SDSC-Expanse LocalAllocationID: "chi135" +InstitutionID: 'https://osg-htc.org/iid/o14joi278jrs' diff --git a/projects/z2dqmc.yaml b/projects/z2dqmc.yaml index d789a011c..d6f86a27c 100644 --- a/projects/z2dqmc.yaml +++ b/projects/z2dqmc.yaml @@ -9,3 +9,4 @@ PIName: Snir Gazit Sponsor: CampusGrid: Name: OSG Connect +InstitutionID: 'https://osg-htc.org/iid/7rhak0ujmsoe' diff --git a/src/schema/miscproject.xsd b/src/schema/miscproject.xsd index 8256c4699..a477fdc1c 100644 --- a/src/schema/miscproject.xsd +++ b/src/schema/miscproject.xsd @@ -69,6 +69,7 @@ + From 835a6c19d2db9c0e66c63005e2db84b9401636cd Mon Sep 17 00:00:00 2001 From: Cannon Lock <49032265+CannonLock@users.noreply.github.com> Date: Wed, 17 Apr 2024 13:20:11 -0500 Subject: [PATCH 174/190] Add the SED-CIP codes as FieldOfScienceID (#3808) * Add the SED-CIP codes as FieldOfScienceID * Update src/webapp/forms.py Co-authored-by: Matyas Selmeci --------- Co-authored-by: Matyas Selmeci --- mappings/field_of_science.yaml | 1665 +++++++++++++++++++ src/app.py | 10 +- src/templates/formmacros.html.j2 | 4 +- src/templates/generate_project_yaml.html.j2 | 6 + src/webapp/forms.py | 19 +- src/webapp/mappings.py | 19 +- 6 files changed, 1716 insertions(+), 7 deletions(-) create mode 100644 mappings/field_of_science.yaml diff --git a/mappings/field_of_science.yaml b/mappings/field_of_science.yaml new file mode 100644 index 000000000..64e484dc3 --- /dev/null +++ b/mappings/field_of_science.yaml @@ -0,0 +1,1665 @@ +'01.0000': Agriculture, General +'01.0101': Agricultural Business and Management, General +'01.0102': Agribusiness/ Agricultural Business Operations +'01.0103': Agricultural Economics +'01.0104': Farm/ Farm and Ranch Management +'01.0105': Agricultural/ Farm Supplies Retailing and Wholesaling +'01.0106': Agricultural Business Technology +'01.0199': Agricultural Business and Management, Other +'01.0201': Agricultural Mechanization, General +'01.0204': Agricultural Power Machinery Operation +'01.0205': Agricultural Mechanics and Equipment/ Machine Technology +'01.0207': Irrigation Management Technology +'01.0299': Agricultural Mechanization, Other +'01.0301': Agricultural Production Operations, General +'01.0302': Animal/ Livestock Husbandry and Production +'01.0303': Aquaculture +'01.0304': Crop Production +'01.0306': Dairy Husbandry and Production +'01.0307': Horse Husbandry/ Equine Science and Management +'01.0308': Agroecology and Sustainable Agriculture +'01.0310': Apiculture +'01.0399': Agricultural Production Operations, Other +'01.0401': Agricultural and Food Products Processing +'01.0504': Dog/ Pet/ Animal Grooming +'01.0505': Animal Training +'01.0507': Equestrian/ Equine Studies +'01.0508': Taxidermy/ Taxidermist +'01.0509': Farrier Science +'01.0599': Agricultural and Domestic Animal Services, Othern +'01.0601': Applied Horticulture/ Horticulture Operations, General +'01.0603': Ornamental Horticulture +'01.0604': Greenhouse Operations and Management +'01.0605': Landscaping and Groundskeeping +'01.0606': Plant Nursery Operations and Management +'01.0607': Turf and Turfgrass Management +'01.0608': Floriculture/ Floristry Operations and Management +'01.0609': Public Horticulture +'01.0610': Urban and Community Horticulture +'01.0699': Applied Horticulture/ Horticultural Business Services, Other +'01.0701': International Agriculture +'01.0801': Agricultural and Extension Education Services +'01.0802': Agricultural Communication/ Journalism +'01.0899': Agricultural Public Services, Other +'01.0901': Animal Sciences, General +'01.0902': Agricultural Animal Breeding +'01.0903': Animal Health +'01.0904': Animal Nutrition +'01.0905': Dairy Science +'01.0906': Livestock Management +'01.0907': Poultry Science +'01.0999': Animal Sciences, Other +'01.1001': Food Science +'01.1002': Food Technology and Processing +'01.1003': Brewing Science +'01.1004': Viticulture and Enology +'01.1005': Zymology/ Fermentation Science +'01.1099': Food Science and Technology, Other +'01.1101': Plant Sciences, General +'01.1102': Agronomy and Crop Science +'01.1103': Horticultural Science +'01.1104': Agricultural and Horticultural Plant Breeding +'01.1105': Plant Protection and Integrated Pest Management +'01.1106': Range Science and Management +'01.1199': Plant Sciences, Other +'01.1201': Soil Science and Agronomy, General +'01.1202': Soil Chemistry and Physics +'01.1203': Soil Microbiology +01.1203b: Soil Chemistry and Microbiology +'01.1299': Soil Sciences, Other +'01.1302': Pre-Veterinary Studies +'01.1399': Agriculture/ Veterinary Preparatory Programs, Other +'01.8001': Veterinary Medicine +'01.8101': Veterinary Sciences/ Veterinary Clinical Sciences, General +'01.8102': Comparative and Laboratory Animal Medicine +'01.8103': Large Animal/ Food Animal and Equine Surgery and Medicine +'01.8104': Small/ Companion Animal Surgery and Medicine +'01.8105': Veterinary Anatomy +'01.8106': Veterinary Infectious Diseases +'01.8107': Veterinary Microbiology and Immunobiology +'01.8108': Veterinary Pathology and Pathobiology +'01.8109': Veterinary Physiology +'01.8110': Veterinary Preventive Medicine, Epidemiology, and Public Health +'01.8111': Veterinary Toxicology and Pharmacology +'01.8199': Veterinary Biomedical and Clinical Sciences, Other +'01.8201': Veterinary Administrative Services, General +'01.8202': Veterinary Office Management/ Administration +'01.8203': Veterinary Reception/ Receptionist +'01.8204': Veterinary Administrative/ Executive Assistant and Veterinary Secretary +'01.8299': Veterinary Administrative Services, Other +'01.8301': Veterinary/ Animal Health Technology and Veterinary Assistant +'01.8399': Veterinary/ Animal Health Technologies, Other +'01.9999': Agricultural/ Animal/ Plant/ Veterinary Science and Related Fields, Other +'03.0101': Natural Resources/ Conservation, General +'03.0103': Environmental Studies +'03.0104': Environmental Science +'03.0199': Natural Resources Conservation and Research, Other +'03.0201': Environmental/ Natural Resources Management and Policy, General +'03.0204': Environmental/ Natural Resource Economics (NATURAL RESOURCES/ CONSERVATION + SCIENCES) +'03.0205': Water, Wetlands, and Marine Resources Management +'03.0206': Land Use Planning and Management/ Development +'03.0207': Environmental/ Natural Resource Recreation and Tourism +'03.0208': Environmental/ Natural Resources Law Enforcement and Protective Services +'03.0209': Energy and Environmental Policy +'03.0210': Bioenergy +'03.0299': Environmental/ Natural Resources Management and Policy, Other +'03.0301': Fishing and Fisheries Sciences and Management +'03.0501': Forestry, General +'03.0502': Forest Sciences and Biology +'03.0506': Forest Management/ Forest Resources Management +'03.0508': Urban Forestry +'03.0509': Wood Science and Wood Products/ Pulp and Paper Technology +'03.0510': Forest Resources Production and Management +'03.0511': Forest Technology +'03.0599': Forestry, Other +'03.0601': Wildlife, Fish and Wildlands Science and Management +'03.9999': Natural Resources and Conservation, Other +'04.0200': Pre-Architecture Studies +'04.0201': Architecture +'04.0202': Architectural Design +'04.0299': Architecture, Other +'04.0301': City/ Urban, Community, and Regional Planning +'04.0401': Environmental Design/ Architecture +'04.0402': Healthcare Environment Design/ Architecture +'04.0403': Sustainable Design/ Architecture +'04.0499': Environmental Design, Other +'04.0501': Interior Architecture +'04.0601': Landscape Architecture +'04.0801': Architectural History and Criticism, General +'04.0802': Architectural Conservation +'04.0803': Architectural Studies +'04.0899': Architectural History, Criticism, and Conservation, Other +'04.0901': Architectural Technology +'04.0902': Architectural and Building Sciences/ Technology +'04.0999': Architectural Sciences and Technology, Other +'04.1001': Real Estate Development +'04.9999': Architecture and Related Services, Other +'05.0101': African Studies +'05.0102': American/ United States Studies/ Civilization +'05.0103': Asian Studies/ Civilization +'05.0104': East Asian Studies +'05.0105': Russian, Central European, East European and Eurasian Studies +'05.0106': European Studies/ Civilization +'05.0107': Latin American Studies +'05.0108': Near and Middle Eastern Studies +'05.0109': Pacific Area/ Pacific Rim Studies +'05.0110': Russian Studies +'05.0111': Scandinavian Studies +'05.0112': South Asian Studies +'05.0113': Southeast Asian Studies +'05.0114': Western European Studies +'05.0115': Canadian Studies +'05.0116': Balkans Studies +'05.0117': Baltic Studies +'05.0118': Slavic Studies +'05.0119': Caribbean Studies +'05.0120': Ural-Altaic and Central Asian Studies +'05.0121': Commonwealth Studies +'05.0122': Regional Studies (US, Canadian, Foreign) +'05.0123': Chinese Studies +'05.0124': French Studies +'05.0125': German Studies +'05.0126': Italian Studies +'05.0127': Japanese Studies +'05.0128': Korean Studies +'05.0129': Polish Studies +'05.0130': Spanish and Iberian Studies +'05.0131': Tibetan Studies +'05.0132': Ukraine Studies +'05.0133': Irish Studies +'05.0134': Latin American and Caribbean Studies +'05.0135': Appalachian Studies +'05.0136': Arctic Studies +'05.0199': Area Studies, Other +'05.0200': Ethnic Studies +'05.0201': African-American/ Black Studies +'05.0202': American Indian/ Native American Studies +'05.0203': Hispanic-American, Puerto Rican, Latinx, and Mexican-American/ Chicano + Studies +'05.0206': Asian-American Studies +'05.0207': Women's Studies +'05.0208': Gay/ Lesbian Studies +'05.0209': Folklore Studies +'05.0210': Disability Studies +'05.0211': Deaf Studies +'05.0212': Comparative Group Studies +'05.0299': Ethnic, Cultural Minority, Gender, and Group Studies, Other +'05.9999': Area, Ethnic, Cultural, Gender, and Group Studies, Other +'09.0100': Communication, General +09.0100b: Communication Research +09.0100c: Communication Theory +09.0100d: Communication Studiesb +'09.0101': Speech Communication and Rhetoric +'09.0102': Mass Communication/ Media Studies +'09.0199': Communication and Media Studies, Other +'09.0401': Journalism +'09.0402': Broadcast Journalism +'09.0404': Photojournalism +'09.0405': Business and Economic Journalism +'09.0406': Cultural Journalism +'09.0407': Science/ Health/ Environmental Journalism +'09.0499': Journalism, Other +'09.0701': Radio and Television +'09.0702': Digital Communication and Media/ Multimedia +'09.0799': Radio, Television, and Digital Communication, Other +'09.0900': Public Relations, Advertising, and Applied Communication +'09.0901': Organizational Communication, General +'09.0902': Public Relations/ Image Management +'09.0903': Advertising +'09.0904': Political Communication +'09.0905': Health Communication +'09.0906': Sports Communication +'09.0907': International and Intercultural Communication +'09.0908': Technical and Scientific Communication +'09.0909': Communication Management and Strategic Communications +'09.0999': Public Relations, Advertising, and Applied Communication, Other +'09.1001': Publishing +'09.9999': Communication, Journalism, and Related Programs, Other +'10.0105': Communications Technology +'10.0201': Photographic and Film/ Video Technology +'10.0202': Radio and Television Broadcasting Technology +'10.0203': Recording Arts Technology +'10.0204': Voice Writing Technology +'10.0299': Audiovisual Communications Technologies, Other +'10.0301': Graphic Communications, General +'10.0302': Printing Management +'10.0303': Prepress/ Desktop Publishing and Digital Imaging Design +'10.0304': Animation, Interactive Technology, Video Graphics, and Special Effects +'10.0305': Graphic and Printing Equipment Operator, General Production +'10.0306': Platemaker/ Imager +'10.0307': Printing Press Operator +'10.0308': Computer Typography and Composition Equipment Operator +'10.0399': Graphic Communications, Other +'10.9999': Communications Technologies and Support Services, Other +'11.0101': Computer and Information Sciences, General +'11.0102': Artificial Intelligence +'11.0103': Information Technology +'11.0104': Informatics +'11.0105': Human-Centered Technology Design +'11.0199': Computer and Information Sciences, Other +'11.0201': Computer Programming/ Programmer, General +'11.0202': Computer Programming, Specific Applications +'11.0203': Computer Programming, Vendor/ Product Certification +'11.0204': Computer Game Programming +'11.0205': Computer Programming, Specific Platforms +'11.0299': Computer Programming, Other +'11.0301': Data Processing and Data Processing Technology +'11.0401': Information Science/ Studies +'11.0501': Computer Systems Analysis/ Analyst +'11.0601': Data Entry/ Microcomputer Applications, Generald +'11.0602': Word Processingd +'11.0699': Data Entry/ Microcomputer Applications, Otherd +'11.0701': Computer Science +11.0701b: Computing Theory and Practice (COMPUTER SCIENCE) +11.0701c: Computing Theory and Practice (MATHEMATICS) +'11.0801': Web Page, Digital/ Multimedia and Information Resources Design +'11.0802': Data Modeling/ Warehousing and Database Administration +'11.0803': Computer Graphics +'11.0804': Modeling, Virtual Environments and Simulation +'11.0899': Computer Software and Media Applications, Other +'11.0901': Computer Systems Networking and Telecommunications +'11.0902': Cloud Computing +'11.0999': Computer Systems Networking and Telecommunications, Other +'11.1001': Network and System Administration/ Administrator +'11.1002': System, Networking, and LAN/ WAN Management/ Manager +'11.1003': Computer and Information Systems Security/ Auditing/ Information Assurance +'11.1004': Web/ Multimedia Management and Webmaster +'11.1005': Information Technology Project Management +'11.1006': Computer Support Specialist +'11.1099': Computer/ Information Technology Services Administration and Management, + Other +'11.9999': Computer and Information Sciences and Support Services, Other +'13.0101': Education, General +13.0101b: Educational Studiesb +'13.0201': Bilingual and Multilingual Education +'13.0202': Multicultural Education +'13.0203': Indian/ Native American Education +'13.0299': Bilingual, Multilingual, and Multicultural Education, Other +'13.0301': Curriculum and Instruction +'13.0401': Educational Leadership and Administration, General +'13.0402': Administration of Special Education +'13.0403': Adult and Continuing Education Administration +'13.0404': Educational, Instructional, and Curriculum Supervision +'13.0406': Higher Education/ Higher Education Administration +'13.0407': Community College Administration +'13.0408': Elementary and Middle School Administration/ Principalship +'13.0409': Secondary School Administration/ Principalship +'13.0410': Urban Education and Leadership +'13.0411': Superintendency and Educational System Administration +'13.0412': International School Administration/ Leadership +'13.0413': Education Entrepreneurship +'13.0414': Early Childhood Program Administration +'13.0499': Educational Administration and Supervision, Other +13.0499b: Education and Human Resource Studies/ Development +13.0499c: Organizational Leadership and Policy Development (Education)b +'13.0501': Educational/ Instructional Technology +13.0501b: Educational/ Instructional Media Design +13.0501c: Learning/Instructional Design and Technologyb +'13.0601': Educational Evaluation and Research +'13.0603': Educational Statistics and Research Methods +'13.0604': Educational Assessment, Testing, and Measurement +'13.0607': Learning Sciences +'13.0608': Institutional Research +'13.0699': Educational Assessment, Evaluation, and Research, Other +13.0699b: Higher Education Evaluation and Research +'13.0701': International and Comparative Education +'13.0901': Social and Philosophical Foundations of Education +'13.1001': Special Education and Teaching, General +'13.1003': Education/ Teaching of Individuals with Hearing Impairments Including Deafness +'13.1004': Education/ Teaching of the Gifted and Talented +'13.1005': Education/ Teaching of Individuals with Emotional Disturbances +'13.1006': Education/ Teaching of Individuals with Intellectual Disabilities +'13.1007': Education/ Teaching of Individuals with Multiple Disabilities +'13.1008': Education/ Teaching of Individuals with Orthopedic and Other Physical Health + Impairments +'13.1009': Education/ Teaching of Individuals with Vision Impairments Including Blindness +'13.1011': Education/ Teaching of Individuals with Specific Learning Disabilities +'13.1012': Education/ Teaching of Individuals with Speech or Language Impairments +'13.1013': Education/ Teaching of Individuals with Autism +'13.1014': Education/ Teaching of Individuals Who are Developmentally Delayed +'13.1015': Education/ Teaching of Individuals in Early Childhood Special Education + Programs +'13.1016': Education/ Teaching of Individuals with Traumatic Brain Injuries +'13.1017': Education/ Teaching of Individuals in Elementary Special Education Programs +'13.1018': Education/ Teaching of Individuals in Junior High/ Middle School Special + Education Programs +'13.1019': Education/ Teaching of Individuals in Secondary Special Education Programs +'13.1099': Special Education and Teaching, Other +'13.1101': Counselor Education/ School Counseling and Guidance Services +'13.1102': College Student Counseling and Personnel Services +'13.1199': Student Counseling and Personnel Services, Other +'13.1201': Adult and Continuing Education and Teaching +13.1201b: Workforce Education and Development +'13.1202': Elementary Education and Teaching +'13.1203': Junior High/ Intermediate/ Middle School Education and Teaching +'13.1205': Secondary Education and Teaching +'13.1206': Teacher Education, Multiple Levels +'13.1207': Montessori Teacher Education +'13.1208': Waldorf/ Steiner Teacher Education +'13.1209': Kindergarten/ Preschool Education and Teaching +'13.1210': Early Childhood Education and Teaching +'13.1211': Online Educator/ Online Teaching +'13.1212': International Teaching and Learning +'13.1213': Science, Technology, Engineering, and Mathematics (STEM) Educational Methods +'13.1214': College/ Postsecondary/ University Teaching +13.1214b: Developmental Educationb +'13.1299': Teacher Education and Professional Development, Specific Levels and Methods, + Other +13.1299b: Teaching and Learningb +'13.1301': Agricultural Teacher Education +'13.1302': Art Teacher Education +'13.1303': Business and Innovation/ Entrepreneurship Teacher Education +'13.1304': Driver and Safety Teacher Education +'13.1305': English/ Language Arts Teacher Education +'13.1306': Foreign Language Teacher Education +'13.1307': Health Teacher Educationk +'13.1308': Family and Consumer Sciences/ Home Economics Teacher Education +'13.1309': Technology Teacher Education/ Industrial Arts Teacher Education +'13.1310': Sales and Marketing Operations/ Marketing and Distribution Teacher Education +'13.1311': Mathematics Teacher Education +'13.1312': Music Teacher Education +'13.1314': Physical Education Teaching and Coaching +'13.1315': Reading Teacher Education +13.1315b: Language and Literacy Educationb +'13.1316': Science Teacher Education/ General Science Teacher Education +'13.1317': Social Science Teacher Education +'13.1318': Social Studies Teacher Education +'13.1319': Technical Teacher Education +'13.1320': Trade and Industrial Teacher Education +'13.1321': Computer Teacher Education +'13.1322': Biology Teacher Education +'13.1323': Chemistry Teacher Education +'13.1324': Drama and Dance Teacher Education +'13.1325': French Language Teacher Education +'13.1326': German Language Teacher Education +'13.1327': Health Occupations Teacher Education +'13.1328': History Teacher Education +'13.1329': Physics Teacher Education +'13.1330': Spanish Language Teacher Education +'13.1331': Speech Teacher Education +'13.1332': Geography Teacher Education +'13.1333': Latin Teacher Education +'13.1334': School Librarian/ School Library Media Specialist +'13.1335': Psychology Teacher Education +'13.1337': Earth Science Teacher Education +'13.1338': Environmental Education +'13.1339': Communication Arts and Literature Teacher Education +'13.1399': Teacher Education and Professional Development, Specific Subject Areas, + Other +'13.1401': Teaching English as a Second or Foreign Language/ ESL Language Instructor +'13.1402': Teaching French as a Second or Foreign Language +'13.1499': Teaching English or French as a Second or Foreign Language, Other +'13.1501': Teacher Assistant/ Aide +'13.1502': Adult Literacy Tutor/ Instructor +'13.1599': Teaching Assistants/ Aides, Other +'13.9999': Education, Other +'14.0101': Engineering, General +'14.0102': Pre-Engineering +'14.0103': Applied Engineering +'14.0201': Aerospace, Aeronautical, and Astronautical/ Space Engineering, General +'14.0202': Astronautical Engineering +14.0202b: Aeronautics and Astronauticsb +'14.0299': Aerospace, Aeronautical, and Astronautical/ Space Engineering, Other +'14.0301': Agricultural Engineering +'14.0401': Architectural Engineering +'14.0501': Bioengineering and Biomedical Engineering +'14.0601': Ceramic Sciences and Engineering +'14.0701': Chemical Engineering +'14.0702': Chemical and Biomolecular Engineering +'14.0799': Chemical Engineering, Other +'14.0801': Civil Engineering, General +'14.0802': Geotechnical and Geoenvironmental Engineering +'14.0803': Structural Engineering +'14.0804': Transportation and Highway Engineering +'14.0805': Water Resources Engineering +'14.0899': Civil Engineering, Other +14.0899b: Civil and Environmental Engineeringb +'14.0901': Computer Engineering, General +'14.0902': Computer Hardware Engineering +'14.0903': Computer Software Engineering +'14.0999': Computer Engineering, Other +'14.1001': Electrical and Electronics Engineering +'14.1003': Laser and Optical Engineering +'14.1004': Telecommunications Engineering +'14.1099': Electrical, Electronics, and Communications Engineering, Other +14.1099b: Communications Engineering +'14.1101': Engineering Mechanics +14.1101b: Computational Mechanicsb +'14.1201': Engineering Physics +'14.1301': Engineering Science +'14.1401': Environmental/ Environmental Health Engineering +'14.1801': Materials Engineering +14.1801b: Materials Science and Engineering +'14.1901': Mechanical Engineering +14.1901b: Mechanical and Aerospace Engineeringb +'14.2001': Metallurgical Engineering +'14.2101': Mining and Mineral Engineering +'14.2201': Naval Architecture and Marine Engineering +'14.2301': Nuclear Engineering +'14.2401': Ocean Engineering +'14.2501': Petroleum Engineering +'14.2701': Systems Engineering +'14.2801': Textile Sciences and Engineering +'14.3201': Polymer/ Plastics Engineering +'14.3301': Construction Engineering +'14.3401': Forest Engineering +'14.3501': Industrial Engineering +14.3501b: Industrial and Systems Engineeringb +'14.3601': Manufacturing Engineering +'14.3701': Operations Research (ENGINEERING) +14.3701b: Operations Research (MATHEMATICS) +14.3701c: Operations Research (BUSINESS) +'14.3801': Surveying Engineering +'14.3901': Geological/ Geophysical Engineering +'14.4001': Paper Science and Engineering +'14.4101': Electromechanical Engineeringe +'14.4201': Mechatronics, Robotics, and Automation Engineeringe +'14.4301': Biochemical Engineering +'14.4401': Engineering Chemistry +'14.4501': Biological/ Biosystems Engineering +'14.4701': Electrical and Computer Engineering +'14.4801': Energy Systems Engineering, General +'14.4802': Power Plant Engineering +'14.4899': Energy Systems Engineering, Other +'14.9999': Engineering, Other +14.9999b: Engineering Education +14.9999c: Engineering Management and Administration +14.9999d: Computational Engineeringb +14.9999e: Nanoengineering/Nanoscale Engineeringb +'15.0000': Engineering Technologies, General +'15.0001': Applied Engineering Technologies +'15.0101': Architectural Engineering Technologies +'15.0201': Civil Engineering Technologies +'15.0303': Electrical, Electronic, and Communications Engineering Technology +'15.0304': Laser and Optical Technology +'15.0305': Telecommunications Technology +'15.0306': Integrated Circuit Design Technology +'15.0307': Audio Engineering Technology +'15.0399': Electrical/ Electronic Engineering Technologies, Other +'15.0401': Biomedical Technology +'15.0403': Electromechanical/ Electromechanical Engineering Technology +'15.0404': Instrumentation Technology +'15.0405': Robotics Technology +'15.0406': Automation Engineer Technology +'15.0407': Mechatronics, Robotics, and Automation Engineering Technology +'15.0499': Electromechanical Technologies, Other +'15.0501': Heating, Ventilation, Air Conditioning and Refrigeration Engineering Technology +'15.0506': Water Quality and Wastewater Treatment Management and Recycling Technology +'15.0507': Environmental/ Environmental Engineering Technology +'15.0508': Hazardous Materials Management and Waste Technology +'15.0599': Environmental Control Technologies, Other +'15.0607': Plastics and Polymer Engineering Technology +'15.0611': Metallurgical Technology +'15.0612': Industrial Technology +'15.0613': Manufacturing Engineering Technology +'15.0614': Welding Engineering Technology +'15.0615': Chemical Engineering Technology +'15.0616': Semiconductor Manufacturing Technology +'15.0617': Composite Materials Technology +'15.0699': Industrial Production Technologies, Other +'15.0701': Occupational Safety and Health Technology +'15.0702': Quality Control Technology +'15.0703': Industrial Safety Technology +'15.0704': Hazardous Materials Information Systems Technology +'15.0705': Process Safety Technology +'15.0799': Quality Control and Safety Technologies, Other +'15.0801': Aeronautical/ Aerospace Engineering Technology +'15.0803': Automotive Engineering Technology +'15.0805': Mechanical/ Mechanical Engineering Technology +'15.0806': Marine Engineering Technology +'15.0807': Motorsports Engineering Technology +'15.0899': Mechanical Engineering Related Technologies, Other +'15.0901': Mining Technology +'15.0903': Petroleum Technology +'15.0999': Mining and Petroleum Technologies, Other +'15.1001': Construction Engineering Technology +'15.1102': Surveying Technology/ Surveying +'15.1103': Hydraulics and Fluid Power Technology +'15.1199': Engineering-Related Technologies, Other +'15.1201': Computer Engineering Technology +'15.1202': Computer/ Computer Systems Technology +'15.1203': Computer Hardware Technology +'15.1204': Computer Software Technology +'15.1299': Computer Engineering Technologies, Other +'15.1301': Drafting and Design Technology, General +'15.1302': CAD/ CADD Drafting and/ or Design Technology +'15.1303': Architectural Drafting and Architectural CAD/ CADD +'15.1304': Civil Drafting and Civil Engineering CAD/ CADD +'15.1305': Electrical/ Electronics Drafting and Electrical/ Electronics CAD/ CADD +'15.1306': Mechanical Drafting and Mechanical Drafting CAD/ CADD +'15.1307': 3-D Modeling and Design Technology +'15.1399': Drafting/ Design Engineering Technologies, Other +'15.1401': Nuclear Engineering Technology +'15.1501': Engineering/ Industrial Management +'15.1502': Engineering Design +'15.1503': Packaging Science +'15.1599': Engineering-Related Fields, Other +'15.1601': Nanotechnology +'15.1701': Energy Systems Technology +'15.1702': Power Plant Technology +'15.1703': Solar Energy Technology +'15.1704': Wind Energy Technology +'15.1705': Hydroelectric Energy Technology +'15.1706': Geothermal Energy Technology +'15.1799': Energy Systems Technologies, Other +'15.9999': Engineering/ Engineering-Related Technologies, Other +'16.0101': Foreign Languages and Literatures, General +'16.0102': Linguistics +'16.0103': Language Interpretation and Translation +'16.0104': Comparative Literature +'16.0105': Applied Linguistics +'16.0199': Linguistic, Comparative, and Related Language Studies and Services, Other +16.0199b: Translation Studiesb +'16.0201': African Languages, Literatures, and Linguistics +'16.0300': East Asian Languages, Literatures, and Linguistics, General +'16.0301': Chinese Language and Literature +'16.0302': Japanese Language and Literature +'16.0303': Korean Language and Literature +'16.0304': Tibetan Language and Literature +'16.0399': East Asian Languages, Literatures, and Linguistics, Other +'16.0400': Slavic Languages, Literatures, and Linguistics, General +'16.0401': Baltic Languages, Literatures, and Linguistics +'16.0402': Russian Language and Literature +'16.0404': Albanian Language and Literature +'16.0405': Bulgarian Language and Literature +'16.0406': Czech Language and Literature +'16.0407': Polish Language and Literature +'16.0408': Bosnian, Serbian, and Croatian Languages and Literatures +'16.0409': Slovak Language and Literature +'16.0410': Ukrainian Language and Literature +'16.0499': Slavic, Baltic, and Albanian Languages, Literatures, and Linguistics, Other +'16.0500': Germanic Languages, Literatures, and Linguistics, General +'16.0501': German Language and Literature +'16.0502': Scandinavian Languages, Literatures, and Linguistics +'16.0503': Danish Language and Literature +'16.0504': Dutch/ Flemish Language and Literature +'16.0505': Norwegian Language and Literature +'16.0506': Swedish Language and Literature +'16.0599': Germanic Languages, Literatures, and Linguistics, Other +'16.0601': Modern Greek Language and Literature +'16.0700': South Asian Languages, Literatures, and Linguistics, General +'16.0701': Hindi Language and Literature +'16.0702': Sanskrit and Classical Indian Languages, Literatures, and Linguistics +'16.0704': Bengali Language and Literature +'16.0705': Punjabi Language and Literature +'16.0706': Tamil Language and Literature +'16.0707': Urdu Language and Literature +'16.0799': South Asian Languages, Literatures, and Linguistics, Other +'16.0801': Iranian Languages, Literatures, and Linguistics +'16.0900': Romance Languages, Literatures, and Linguistics, General +'16.0901': French Language and Literature +'16.0902': Italian Language and Literature +'16.0904': Portuguese Language and Literature +'16.0905': Spanish Language and Literature +'16.0906': Romanian Language and Literature +'16.0907': Catalan Language and Literature +'16.0908': Hispanic and Latin American Languages, Literatures, and Linguistics, General +'16.0999': Romance Languages, Literatures, and Linguistics, Other +'16.1001': American Indian/ Native American Languages, Literatures, and Linguistics +'16.1100': Middle/ Near Eastern and Semitic Languages, Literatures, and Linguistics, + General +'16.1101': Arabic Language and Literature +'16.1102': Hebrew Language and Literature +'16.1103': Ancient Near Eastern and Biblical Languages, Literatures, and Linguistics +'16.1199': Middle/ Near Eastern and Semitic Languages, Literatures, and Linguistics, + Other +'16.1200': Classics and Classical Languages, Literatures, and Linguistics, General +'16.1202': Ancient/ Classical Greek Language and Literature +'16.1203': Latin Language and Literature +'16.1299': Classics and Classical Languages, Literatures, and Linguistics, Other +'16.1301': Celtic Languages, Literatures, and Linguistics +'16.1400': Southeast Asian Languages, Literatures, and Linguistics, General +'16.1401': Australian/ Oceanic/ Pacific Languages, Literatures, and Linguistics +'16.1402': Indonesian/ Malay Languages and Literatures +'16.1403': Burmese Language and Literature +'16.1404': Filipino/ Tagalog Language and Literature +'16.1405': Khmer/ Cambodian Language and Literature +'16.1406': Lao Language and Literature +'16.1407': Thai Language and Literature +'16.1408': Vietnamese Language and Literature +'16.1409': Hawaiian Language and Literature +'16.1499': Southeast Asian and Australasian/ Pacific Languages, Literatures, and Linguistics, + Other +'16.1501': Turkish Language and Literature +'16.1502': Uralic Languages, Literatures, and Linguistics +'16.1503': Hungarian/ Magyar Language and Literature +'16.1504': Mongolian Language and Literature +'16.1599': Turkic, Uralic-Altaic, Caucasian, and Central Asian Languages, Literatures, + and Linguistics, Other +'16.1601': American Sign Language (ASL) +'16.1602': Linguistics of ASL and Other Sign Languages +'16.1603': Sign Language Interpretation and Translation +'16.1699': American Sign Language, Other +'16.1701': English as a Second Language +'16.1801': Armenian Language and Literature +'16.9999': Foreign Languages, Literatures, and Linguistics, Other +'19.0101': Family and Consumer Sciences/ Human Sciences, General +'19.0201': Business Family and Consumer Sciences/ Human Sciences +'19.0202': Family and Consumer Sciences/ Human Sciences Communication +'19.0203': Consumer Merchandising/ Retailing Management +'19.0299': Family and Consumer Sciences/ Human Sciences Business Services, Other +'19.0401': Family Resource Management Studies, General +'19.0402': Consumer Economics +'19.0403': Consumer Services and Advocacy +'19.0499': Family and Consumer Economics and Related Services, Other +'19.0501': Foods, Nutrition, and Wellness Studies, General +'19.0504': Human Nutrition +'19.0505': Foodservice Systems Administration/ Management +'19.0599': Foods, Nutrition, and Related Services, Other +'19.0601': Housing and Human Environments, General +'19.0604': Facilities Planning and Management +'19.0605': Home Furnishings and Equipment Installers +'19.0699': Housing and Human Environments, Other +'19.0701': Human Development and Family Studies, General +'19.0702': Adult Development and Aging +'19.0704': Family Systems +'19.0706': Child Development +'19.0707': Family and Community Services +'19.0708': Child Care and Support Services Management +'19.0709': Child Care Provider/ Assistant +'19.0710': Developmental Services Worker +'19.0711': Early Childhood and Family Studies +'19.0712': Parent Education Services +'19.0799': Human Development, Family Studies, and Related Services, Other +'19.0901': Apparel and Textiles, General +'19.0902': Apparel and Textile Manufacture +'19.0904': Textile Science +'19.0905': Apparel and Textile Marketing Management +'19.0906': Fashion and Fabric Consultant +'19.0999': Apparel and Textiles, Other +'19.1001': Work and Family Studies +'19.9999': Family and Consumer Sciences/ Human Sciences, Other +'22.0000': Legal Studies +'22.0001': Pre-Law Studies +'22.0099': Non-Professional Legal Studies, Other +'22.0101': Law +'22.0201': Advanced Legal Research/ Studies, General +'22.0202': Programs for Foreign Lawyers +'22.0203': American/ US Law/ Legal Studies/ Jurisprudence +'22.0204': Canadian Law/ Legal Studies/ Jurisprudence +'22.0205': Banking, Corporate, Finance, and Securities Law +'22.0206': Comparative Law +'22.0207': Energy, Environment, and Natural Resources Law +'22.0208': Health Law +'22.0209': International Law and Legal Studies +'22.0210': International Business, Trade, and Tax Law +'22.0211': Tax Law/ Taxation +'22.0212': Intellectual Property Law +'22.0213': Patent Law +'22.0214': Agriculture Law +'22.0215': Arts and Entertainment Law +'22.0216': Compliance Law +'22.0217': Criminal Law and Procedure +'22.0218': Entrepreneurship Law +'22.0219': Family/ Child/ Elder Law +'22.0220': Human Resources Law +'22.0221': Insurance Law +'22.0222': Real Estate and Land Development Law +'22.0223': Transportation Law +'22.0224': Tribal/ Indigenous Law +'22.0299': Legal Research and Advanced Professional Studies, Other +'22.0301': Legal Administrative Assistant/ Secretary +'22.0302': Legal Assistant/ Paralegal +'22.0303': Court Reporting and Captioning/ Court Reporter +'22.0304': Court Interpreter +'22.0305': Scopist +'22.0399': Legal Support Services, Other +'22.9999': Legal Professions and Studies, Other +'23.0101': English Language and Literature, General +'23.1301': Writing, General +'23.1302': Creative Writing +'23.1303': Professional, Technical, Business, and Scientific Writing +'23.1304': Rhetoric and Composition +'23.1399': Rhetoric and Composition/ Writing Studies, Other +'23.1401': General Literature +'23.1402': American Literature (United States) +23.1402b: African-American/ Black Literature +'23.1403': American Literature (Canadian) +'23.1404': English Literature (British and Commonwealth) +'23.1405': Children's and Adolescent Literature +'23.1499': Literature, Other +'23.9999': English Language and Literature/ Letters, Other +'24.0101': Liberal Arts and Sciences/ Liberal Studies +'24.0102': General Studies +'24.0103': Humanities/ Humanistic Studies +'24.0199': Liberal Arts and Sciences, General Studies and Humanities, Other +'25.0101': Library and Information Science +'25.0102': Children and Youth Library Services +'25.0103': Archives/ Archival Administration +'25.0199': Library Science and Administration, Other +'25.0301': Library and Archives Assisting +'25.9999': Library Science, Other +'26.0101': Biology/ Biological Sciences, General +26.0101b: Integrative/Interdisciplinary Biology, Biosciences, and Biomedical Sciencesb +'26.0102': Biomedical Sciences, General +'26.0202': Biochemistry +'26.0203': Biophysics (BIOLOGY) +26.0203b: Biophysics (PHYSICS) +'26.0204': Molecular Biology +'26.0205': Molecular Biochemistry +'26.0206': Molecular Biophysicsa +'26.0207': Structural Biology +'26.0208': Photobiology +'26.0209': Radiation Biology/ Radiobiology +'26.0210': Biochemistry and Molecular Biology +'26.0299': Biochemistry, Biophysics and Molecular Biology, Other +'26.0301': Botany/ Plant Biology +'26.0305': Plant Pathology/ Phytopathology (BIOLOGY) +26.0305b: Plant Pathology/ Phytopathology (AGRICULTURAL SCIENCES) +'26.0307': Plant Physiology +'26.0308': Plant Molecular Biology +'26.0399': Botany/ Plant Biology, Other +'26.0401': Cell/ Cellular Biology and Histology +'26.0403': Anatomy +'26.0404': Developmental Biology and Embryology +'26.0406': Cell/ Cellular and Molecular Biology +'26.0407': Cell Biology and Anatomy +'26.0499': Cell/ Cellular Biology and Anatomical Sciences, Other +'26.0502': Microbiology, General +'26.0503': Medical Microbiology and Bacteriology +'26.0504': Virology +'26.0505': Parasitology +'26.0506': Mycology +'26.0507': Immunology +'26.0508': Microbiology and Immunology +'26.0509': Infectious Disease and Global Health +'26.0599': Microbiological Sciences and Immunology, Other +'26.0701': Zoology/ Animal Biology +'26.0702': Entomology +26.0702b: Nematology +26.0702c: Entomology and Nematologyb +'26.0707': Animal Physiology +'26.0708': Animal Behavior and Ethology +'26.0709': Wildlife Biology +'26.0799': Zoology/ Animal Biology, Other +'26.0801': Genetics, General +'26.0802': Molecular Genetics +'26.0803': Microbial and Eukaryotic Genetics +'26.0804': Animal Genetics +'26.0805': Plant Genetics +'26.0806': Human/ Medical Genetics +'26.0807': Genome Sciences/ Genomics +'26.0899': Genetics, Other +'26.0901': Physiology, General +'26.0902': Molecular Physiology +'26.0903': Cell Physiology +'26.0904': Endocrinology +'26.0905': Reproductive Biology +'26.0907': Cardiovascular Science +'26.0908': Exercise Physiology and Kinesiology +'26.0909': Vision Science/ Physiological Optics +'26.0910': Pathology/ Experimental Pathology +'26.0911': Oncology and Cancer Biology +'26.0912': Aerospace Physiology and Medicine +'26.0913': Biomechanics +'26.0999': Physiology, Pathology, and Related Sciences, Other +26.0999b: Pathobiology/Integrative Pathobiologyb +'26.1001': Pharmacology +'26.1002': Molecular Pharmacology +'26.1003': Neuropharmacology +'26.1004': Toxicology +'26.1005': Molecular Toxicology +'26.1006': Environmental Toxicology +'26.1007': Pharmacology and Toxicology +'26.1099': Pharmacology and Toxicology, Other +'26.1101': Biometry/ Biometrics +'26.1102': Biostatistics +'26.1103': Bioinformatics +'26.1104': Computational Biology +'26.1199': Biomathematics, Bioinformatics, and Computational Biology, Other +'26.1201': Biotechnology +'26.1301': Ecology +'26.1302': Marine Biology and Biological Oceanography +'26.1303': Evolutionary Biology +'26.1304': Aquatic Biology/ Limnology +'26.1305': Environmental Biology +'26.1306': Population Biology +'26.1307': Conservation Biology +'26.1308': Systematic Biology/ Biological Systematics +'26.1309': Epidemiology +'26.1310': Ecology and Evolutionary Biology +'26.1311': Epidemiology and Biostatistics +'26.1399': Ecology, Evolution, Systematics and Population Biology, Other +26.1399b: Ecology, Evolution, and Behaviorb +'26.1401': Molecular Medicine +'26.1501': Neuroscience +'26.1502': Neuroanatomy +'26.1503': Neurobiology and Anatomy +'26.1504': Neurobiology and Behaviorc +'26.1599': Neurobiology and Neurosciences, Other +26.1599b: Cognitive Neuroscience +26.1599c: Computational Neuroscienceb +'26.9999': Biological and Biomedical Sciences, Other +'27.0101': Mathematics, General +27.0101b: Mathematical Sciencesb +'27.0102': Algebra and Number Theory +27.0102b: Algebra +27.0102c: Number Theory +'27.0103': Analysis and Functional Analysis +'27.0104': Geometry/ Geometric Analysis +'27.0105': Topology and Foundations +'27.0199': Mathematics, Other +27.0199c: Logic (MATHEMATICS) +'27.0301': Applied Mathematics, General +'27.0303': Computational Mathematics +'27.0304': Computational and Applied Mathematics +'27.0305': Financial Mathematics +'27.0306': Mathematical Biology +'27.0399': Applied Mathematics, Other +'27.0501': Statistics (MATHEMATICS) +'27.0502': Mathematical Statistics and Probabilityg +'27.0503': Mathematics and Statistics +'27.0599': Statistics, Other +27.0599b: Statistics (SOCIAL SCIENCES) +'27.0601': Applied Statistics, General +'27.9999': Mathematics and Statistics, Otherh +'29.0201': Intelligence, General (MILITARY) +'29.0202': Strategic Intelligence (MILITARY) +'29.0203': Signal/ Geospatial Intelligence (MILITARY) +'29.0204': Command & Control (C3, C4I) Systems and Operations (MILITARY) +'29.0205': Information Operations/ Joint Information Operations (MILITARY) +'29.0206': Information/ Psychological Warfare and Military Media Relations +'29.0207': Cyber/ Electronic Operations and Warfare (MILITARY) +'29.0299': Intelligence, Command Control and Information Operations, Other (MILITARY) +'29.0301': Combat Systems Engineering (MILITARY) +'29.0302': Directed Energy Systems (MILITARY) +'29.0303': Engineering Acoustics (MILITARY) +'29.0304': Low-Observables and Stealth Technology (MILITARY) +'29.0305': Space Systems Operations (MILITARY) +'29.0306': Operational Oceanography (MILITARY) +'29.0307': Undersea Warfare (MILITARY) +'29.0399': Military Applied Sciences, Other +'29.0401': Aerospace Ground Equipment Technology (MILITARY) +'29.0402': Air and Space Operations Technology (MILITARY) +'29.0403': Aircraft Armament Systems Technology (MILITARY) +'29.0404': Explosive Ordinance/ Bomb Disposal (MILITARY) +'29.0405': Joint Command/ Task Force (C3, C4I) Systems (MILITARY) +'29.0406': Military Information Systems Technology +'29.0407': Missile and Space Systems Technology +'29.0408': Munitions Systems/ Ordinance Technology (MILITARY) +'29.0409': Radar Communications and Systems Technology (MILITARY) +'29.0499': Military Systems and Maintenance Technology, Other +'29.0601': Military Technology and Applied Sciences Management +'29.9999': Military Technologies and Applied Sciences, Other +'30.0000': Multi-/ Interdisciplinary Studies, General +'30.0001': Comprehensive Transition and Postsecondary (CTP) Program +'30.0101': Biological and Physical Sciences +'30.0501': Peace Studies and Conflict Resolution +30.0501b: Conflict Analysis and Resolutionb +'30.0601': Systems Science and Theory +'30.0801': Mathematics and Computer Science +'30.1001': Biopsychology +'30.1101': Gerontology (MULTIDISCIPLINARY STUDIES) +30.1101b: Gerontology (HEALTH SCIENCES) +30.1101c: Gerontology (SOCIAL SCIENCES) +'30.1201': Historic Preservation and Conservation, General +'30.1202': Cultural Resource Management and Policy Analysis +'30.1299': Historic Preservation and Conservation, Other +'30.1301': Medieval and Renaissance Studies +'30.1401': Museology/ Museum Studies +'30.1501': Science, Technology and Society +'30.1601': Accounting and Computer Science +'30.1701': Behavioral Sciences +'30.1801': Natural Sciences +'30.1901': Nutrition Sciences +'30.2001': International/ Globalization Studies +'30.2101': Holocaust and Related Studies +'30.2201': Ancient Studies/ Civilization +'30.2202': Classical, Ancient Mediterranean, and Near Eastern Studies and Archaeology +'30.2299': Classical and Ancient Studies, Other +'30.2301': Intercultural/ Multicultural and Diversity Studies +'30.2501': Cognitive Science, General +'30.2502': Contemplative Studies/ Inquiry +'30.2599': Cognitive Science, Other +'30.2601': Cultural Studies/ Critical Theory and Analysis +'30.2701': Human Biology +'30.2801': Dispute Resolution +'30.2901': Maritime Studies +'30.3001': Computational Science +30.3001b: Computational Science and Engineering +30.3001c: Computational Science, Engineering, and Mathematicsb +'30.3101': Human Computer Interaction +'30.3201': Marine Sciences +30.3201b: Ocean/ Marine Science, Other +'30.3301': Sustainability Studies +'30.3401': Anthrozoology +'30.3501': Climate Sciencef +'30.3601': Cultural Studies and Comparative Literature +'30.3701': Design for Human Health +'30.3801': Earth Systems Science +30.3801b: Earth & Environmental Sciencesb +'30.3901': Economics and Computer Science +'30.4001': Economics and Foreign Language/ Literature +'30.4101': Environmental Geosciences +'30.4201': Geoarcheaology +'30.4301': Geobiology +'30.4401': Geography and Environmental Studies +'30.4501': History and Language/ Literature +30.4501b: African-American/ Black History and Literature +'30.4601': History and Political Science +'30.4701': Linguistics and Anthropology +'30.4801': Linguistics and Computer Science +'30.4901': Mathematical Economics +'30.5001': Mathematics and Atmospheric/ Oceanic Science +'30.5101': Philosophy, Politics, and Economics +'30.5201': Digital Humanities and Textual Studies, General +'30.5202': Digital Humanities +'30.5203': Textual Studies +'30.5299': Digital Humanities and Textual Studies, Other +'30.5301': Thanatology +'30.7001': Data Science, General +'30.7099': Data Science, Other +30.7099b: Data Mining and Machine Learningb +'30.7101': Data Analytics, General +'30.7102': Business Analytics +'30.7103': Data Visualization +'30.7104': Financial Analytics +'30.7199': Data Analytics, Other +'30.9999': Multi-/ Interdisciplinary Studies, Other +30.9999b: Electrical Engineering and Computer Science +30.9999c: Nanosciences/ Nanoscale Sciences +30.9999d: Computer Science and Engineering +30.9999e: Polymer Science and Engineeringb +30.9999f: Interdisciplinary Leadership/Leadership Studiesb +30.9999g: Second Language Acquisitionb +30.9999z: Multidisciplinary/ Interdisciplinary Sciences, Otheri +'31.0101': Parks, Recreation, and Leisure Studies +'31.0301': Parks, Recreation, and Leisure Facilities Management, General +'31.0302': Golf Course Operation and Grounds Management +'31.0399': Parks, Recreation, and Leisure Facilities Management, Other +'31.0501': Sports, Kinesiology, and Physical Education/ Fitness, General +'31.0504': Sport and Fitness Administration/ Management +'31.0505': Exercise Science and Kinesiology +'31.0507': Physical Fitness Technician +'31.0508': Sports Studies +'31.0599': Sports, Kinesiology, and Physical Education/ Fitness, Other +'31.0601': Outdoor Education +'31.9999': Parks, Recreation, Leisure, Fitness, and Kinesiology, Other +'38.0001': Philosophy and Religious Studies, General +'38.0101': Philosophy +'38.0102': Logic (PHIOLOSPHY) +'38.0103': Ethics +'38.0104': Applied and Professional Ethics +'38.0199': Philosophy, Other +'38.0201': Religion/ Religious Studies +'38.0202': Buddhist Studies +'38.0203': Christian Studies +'38.0204': Hindu Studies +'38.0205': Islamic Studies +'38.0206': Jewish/ Judaic Studies +'38.0207': Talmudic Studies +'38.0208': Catholic Studies +'38.0209': Mormon Studies +'38.0299': Religion/ Religious Studies, Other +'38.9999': Philosophy and Religious Studies, Other +'39.0201': Bible/ Biblical Studies +'39.0301': Missions/ Missionary Studies +'39.0302': Church Planting +'39.0399': Missions/ Missionary Studies and Missiology, Other +'39.0401': Religious Education +'39.0501': Religious/ Sacred Music +'39.0502': Worship Ministry +'39.0599': Religious Music and Worship, Other +'39.0601': Theology/ Theological Studies +'39.0602': Divinity/ Ministry +'39.0604': Pre-Theology/ Pre-Ministerial Studies +'39.0605': Rabbinical Studies +'39.0699': Theological and Ministerial Studies, Other +'39.0701': Pastoral Studies/ Counseling +'39.0702': Youth Ministry +'39.0703': Urban Ministry +'39.0704': Women's Ministry +'39.0705': Lay Ministry +'39.0706': Chaplain/ Chaplaincy Studies +'39.0799': Pastoral Counseling and Specialized Ministries, Other +'39.0801': Religious Institution Administration and Management +'39.0802': Religious/ Canon Law +'39.0899': Religious Institution Administration and Law, Other +'39.9999': Theology and Religious Vocations, Other +'40.0101': Physical Sciences, General +'40.0201': Astronomy +'40.0202': Astrophysics +'40.0203': Planetary Astronomy and Science +'40.0299': Astronomy and Astrophysics, Other +40.0299b: Cosmologyb +'40.0401': Atmospheric Sciences and Meteorology, General +'40.0402': Atmospheric Chemistry and Climatology +'40.0403': Atmospheric Physics and Dynamics +'40.0404': Meteorologyf +'40.0499': Atmospheric Sciences and Meteorology, Otherf +40.0499b: Planetary Sciencesb +'40.0501': Chemistry, General +'40.0502': Analytical Chemistry +'40.0503': Inorganic Chemistry +'40.0504': Organic Chemistry +'40.0506': Physical Chemistry +'40.0507': Polymer Chemistry +'40.0508': Chemical Physics +'40.0509': Environmental Chemistry +'40.0510': Forensic Chemistry +'40.0511': Theoretical Chemistry +40.0511b: Computational Chemistryb +'40.0512': Cheminformatics/ Chemistry Informatics +'40.0599': Chemistry, Other +40.0599b: Chemical Biology +'40.0601': Geology/ Earth Science, General +40.0601b: Earth Science +40.0601c: Geology +'40.0602': Geochemistry +'40.0603': Geophysics and Seismology +'40.0604': Paleontology +'40.0605': Hydrology and Water Resources Science +'40.0606': Geochemistry and Petrology +'40.0607': Oceanography, Chemical and Physical +'40.0699': Geological and Earth Sciences/ Geosciences, Other +40.0699b: Geomorphology and Glacial Geology +40.0699c: Stratigraphy and Sedimentation +'40.0801': Physics, General +'40.0802': Atomic/ Molecular Physics +'40.0804': Elementary Particle Physics +'40.0805': Plasma and High-Temperature Physics +'40.0806': Nuclear Physics +'40.0807': Optics/ Optical Sciences +'40.0808': Condensed Matter and Materials Physics +40.0808b: Polymer Physics +'40.0809': Acoustics +'40.0810': Theoretical and Mathematical Physics +'40.0899': Physics, Other +40.0899b: Applied Physics +'40.1001': Materials Science +'40.1002': Materials Chemistry +'40.1099': Materials Sciences, Other +40.1099b: Fiber and Polymer Sciencesb +'40.1101': Physics and Astronomy +'40.9999': Physical Sciences, Other +40.9999b: Polymer Sciencesb +'42.0101': Psychology, General +'42.2701': Cognitive Psychology and Psycholinguistics +'42.2702': Comparative Psychology +'42.2703': Developmental and Child Psychology +'42.2704': Experimental Psychology +'42.2705': Personality Psychology +'42.2706': Behavioral Neuroscience +'42.2707': Social Psychology +'42.2708': Psychometrics and Quantitative Psychology +'42.2709': Psychopharmacology +'42.2710': Developmental and Adolescent Psychology +'42.2799': Research and Experimental Psychology, Other +42.2799b: Physiological/ Psychobiology Psychology +42.2799c: Human Factors Psychologyb +'42.2801': Clinical Psychology +'42.2802': Community Psychology +'42.2803': Counseling Psychology +'42.2804': Industrial and Organizational Psychology +'42.2805': School Psychology (PSYCHOLOGY) +42.2805b: School Psychology (EDUCATION) +'42.2806': Educational Psychology (PSYCHOLOGY) +42.2806b: Educational Psychology (EDUCATION) +'42.2807': Clinical Child Psychology +'42.2808': Environmental Psychology +'42.2809': Geropsychology +'42.2810': Health/ Medical Psychology +'42.2811': Family Psychology +'42.2812': Forensic Psychology +'42.2813': Applied Psychology +'42.2814': Applied Behavior Analysis +'42.2815': Performance and Sport Psychology +'42.2816': Somatic Psychology +'42.2817': Transpersonal/ Spiritual Psychology +'42.2899': Clinical, Counseling and Applied Psychology, Other +'42.9999': Psychology, Other +'43.0100': Criminal Justice and Corrections, Generalm +'43.0102': Correctionsm +'43.0103': Criminal Justice/ Law Enforcement Administrationm +'43.0104': 'Criminal Justice/ Safety Studiesj ' +'43.0107': Criminal Justice/ Police Sciencem +'43.0109': Security and Loss Prevention Servicesm +'43.0110': Juvenile Correctionsm +'43.0112': Securities Services Administration/ Managementm +'43.0113': Corrections Administrationm +'43.0114': Law Enforcement Investigation and Interviewingm +'43.0115': Law Enforcement Record-Keeping and Evidence Managementm +'43.0119': Critical Incident Response/ Special Police Operationsm +'43.0120': Protective Services Operationsm +'43.0121': Suspension and Debarment Investigationm +'43.0122': Maritime Law Enforcementm +'43.0123': Cultural/ Archaeological Resources Protectionm +'43.0199': Corrections and Criminal Justice, Otherm +'43.0201': Fire Prevention and Safety Technology +'43.0202': Fire Services Administration +'43.0203': Fire Science/ Fire-fighting +'43.0204': Fire Systems Technology +'43.0205': Fire/ Arson Investigation and Prevention +'43.0206': Wildland/ Forest Firefighting and Investigation +'43.0299': Fire Protection, Other +'43.0301': Homeland Security +'43.0302': Crisis/ Emergency/ Disaster Management +'43.0303': Critical Infrastructure Protection +'43.0304': Terrorism and Counterterrorism Operations +'43.0399': Homeland Security, Other +'43.0401': Security Science and Technology, General +'43.0402': Criminalistics and Criminal Sciencem +'43.0403': Cyber/ Computer Forensics and Counterterrorismm +'43.0404': Cybersecurity Defense Strategy/ Policy +'43.0405': Financial Forensics and Fraud Investigation +'43.0406': Forensic Science and Technologym +'43.0407': Geospatial Intelligence +'43.0408': Law Enforcement Intelligence Analysis +'43.0499': Security Science and Technology, Other +'43.9999': Homeland Security, Law Enforcement, Firefighting and Related Protective + Services, Other +'44.0000': Human Services, General +'44.0201': Community Organization and Advocacy +'44.0401': Public Administration +'44.0402': Public Works Management +'44.0403': Transportation and Infrastructure Planning/ Studies +'44.0499': Public Administration, Other +'44.0501': Public Policy Analysis, General +'44.0502': Education Policy Analysis +'44.0503': Health Policy Analysis +'44.0504': International Policy Analysis +'44.0599': Public Policy Analysis, Other +44.0599b: Public Policy and Administrationb +'44.0701': Social Work +'44.0702': Youth Services/ Administration +'44.0703': Forensic Social Work +'44.0799': Social Work, Other +'44.9999': Public Administration and Social Service Professions, Otherl +44.9999b: Public Administration and Policyb +'45.0101': Social Sciences, General +'45.0102': Research Methodology and Quantitative Methods +'45.0103': Survey Research/ Methodology +'45.0199': Social Sciences, Other +'45.0201': Anthropology, General +'45.0202': Physical and Biological Anthropology +'45.0203': Medical Anthropology +'45.0204': Cultural Anthropology +'45.0205': Forensic Anthropology +'45.0299': Anthropology, Other +'45.0301': Archaeology/ Archeology (SOCIAL SCIENCES) +45.0301b: Archaeology/ Archeology (HUMANITIES) +'45.0401': Criminology +'45.0501': Demography and Population Studies +'45.0502': Applied Demography +'45.0599': Demography, Other +'45.0601': Economics, General +'45.0602': Applied Economics +45.0602b: Environmental/ Natural Resource Economics (SOCIAL SCIENCES) +'45.0603': Econometrics and Quantitative Economics +'45.0604': Development Economics and International Development +'45.0605': International Economics +'45.0699': Economics, Other +'45.0701': Geography +'45.0702': Geographic Information Science and Cartography +'45.0799': Geography, Other +'45.0901': International Relations and Affairs +'45.0902': National Security Policy Studies +'45.0999': International Relations and National Security Studies, Other +'45.1001': Political Science and Government, General +'45.1002': American Government and Politics (United States) +'45.1003': Canadian Government and Politics +'45.1004': Political Economy +'45.1099': Political Science and Government, Other +'45.1101': Sociology, General +'45.1102': Applied/ Public Sociology +'45.1103': Rural Sociology +'45.1199': Sociology, Other +'45.1201': Urban Studies/ Affairs +'45.1301': Sociology and Anthropology +'45.1501': Geography and Anthropology +'45.9999': Social Sciences, Other +'49.0101': Aeronautics/ Aviation/ Aerospace Science and Technology, General +'49.0104': Aviation/ Airway Management and Operations +'50.0101': Visual and Performing Arts, General +'50.0102': Digital Arts +'50.0201': Crafts/ Craft Design, Folk Art and Artisanry +'50.0301': Dance, General +'50.0302': Ballet +'50.0399': Dance, Other +'50.0401': Design and Visual Communications, General +'50.0402': Commercial and Advertising Art +'50.0404': Industrial and Product Design +'50.0406': Commercial Photography +'50.0407': Fashion/ Apparel Design +'50.0408': Interior Design +'50.0409': Graphic Design +'50.0410': Illustration +'50.0411': Game and Interactive Media Design +'50.0499': Design and Applied Arts, Other +'50.0501': Drama and Dramatics/ Theatre Arts, General +'50.0502': Technical Theatre/ Theatre Design and Technology +'50.0504': Playwriting and Screenwriting +'50.0505': Theatre Literature, History and Criticism +'50.0506': Acting +'50.0507': Directing and Theatrical Production +'50.0509': Musical Theatre +'50.0510': Costume Design +'50.0511': Comedy Writing and Performance +'50.0512': Theatre and Dance +'50.0599': Dramatic/ Theatre Arts and Stagecraft, Other +'50.0601': Film/ Cinema/ Media Studies +'50.0602': Cinematography and Film/ Video Production +'50.0605': Photography +'50.0607': Documentary Production +'50.0699': Film/ Video and Photographic Arts, Other +'50.0701': Art/ Art Studies, General +'50.0702': Fine/ Studio Arts, General +'50.0703': Art History, Criticism and Conservation +'50.0705': Drawing +'50.0706': Intermedia/ Multimedia +'50.0708': Painting +'50.0709': Sculpture +'50.0710': Printmaking +'50.0711': Ceramic Arts and Ceramics +'50.0712': Fiber, Textile and Weaving Arts +'50.0713': Jewelry Arts +'50.0714': Metal Arts +'50.0799': Fine Arts and Art Studies, Other +'50.0901': Music, General +'50.0902': Music History, Literature, and Theory +'50.0903': Music Performance, General +'50.0904': Music Theory and Composition +'50.0905': Musicology and Ethnomusicology +'50.0906': Conducting +'50.0907': Keyboard Instruments +'50.0908': Voice and Opera +'50.0910': Jazz/ Jazz Studies +'50.0911': Stringed Instruments +'50.0912': Music Pedagogy +'50.0913': Music Technology +'50.0914': Brass Instruments +'50.0915': Woodwind Instruments +'50.0916': Percussion Instruments +'50.0917': Sound Arts +'50.0999': Music, Other +'50.1001': Arts, Entertainment, and Media Management, General +'50.1002': Fine and Studio Arts Management +'50.1003': Music Management +'50.1004': Theatre/ Theatre Arts Management +'50.1099': Arts, Entertainment, and Media Management, Other +'50.1101': Community/ Environmental/ Socially-Engaged Art +'50.9999': Visual and Performing Arts, Other +'51.0000': Health Services/ Allied Health/ Health Sciences, General +51.0000b: Health sciences, general +'51.0001': Health and Wellness, General +'51.0101': Chiropractic +'51.0201': Communication Sciences and Disorders, General +'51.0202': Audiology/ Audiologist +'51.0203': Speech-Language Pathology/ Pathologist +'51.0204': Audiology/ Audiologist and Speech-Language Pathology/ Pathologist +'51.0299': Communication Disorders Sciences and Services, Other +'51.0401': Dentistry +'51.0501': Dental Clinical Sciences, General +'51.0502': Advanced General Dentistry +'51.0503': Oral Biology and Oral and Maxillofacial Pathology +'51.0504': Dental Public Health and Education +'51.0505': Dental Materials +'51.0506': Endodontics/ Endodontology +'51.0507': Oral/ Maxillofacial Surgery +'51.0508': Orthodontics/ Orthodontology +'51.0509': Pediatric Dentistry/ Pedodontics +'51.0510': Periodontics/ Periodontology +'51.0511': Prosthodontics/ Prosthodontology +'51.0512': Digital Dentistry +'51.0513': Geriatric Dentistry +'51.0514': Implantology/ Implant Dentistry +'51.0599': Advanced/ Graduate Dentistry and Oral Sciences, Other +'51.0601': Dental Assisting/ Assistant +'51.0602': Dental Hygiene/ Hygienist +'51.0603': Dental Laboratory Technology +'51.0699': Dental Services and Allied Professions, Other +'51.0701': Health/ Health Care Administration/ Management +'51.0702': Hospital and Health Care Facilities Administration/ Management +'51.0703': Health Unit Coordinator/ Ward Clerk +'51.0704': Health Unit Manager/ Ward Supervisor +'51.0705': Medical Office Management/ Administration +'51.0706': Health Information/ Medical Records Administration/ Administrator +'51.0707': Health Information/ Medical Records Technology +'51.0708': Medical Transcription/ Transcriptionist +'51.0709': Medical Office Computer Specialist/ Assistant +'51.0710': Medical Office Assistant/ Specialist +'51.0711': Medical/ Health Management and Clinical Assistant/ Specialist +'51.0712': Medical Reception/ Receptionist +'51.0713': Medical Insurance Coding Specialist/ Coder +'51.0714': Medical Insurance Specialist/ Medical Biller +'51.0715': Health/ Medical Claims Examiner +'51.0716': Medical Administrative/ Executive Assistant and Medical Secretary +'51.0717': Medical Staff Services Technology +'51.0718': Long Term Care Administration/ Management +'51.0719': Clinical Research Coordinator +'51.0720': Regulatory Science/ Affairs +'51.0721': Disease Registry Data Management +'51.0722': Healthcare Innovation +'51.0723': Healthcare Information Privacy Assurance and Security +'51.0799': Health and Medical Administrative Services, Other +'51.0801': Medical/ Clinical Assistant +'51.0802': Clinical/ Medical Laboratory Assistant +'51.0803': Occupational Therapist Assistant +'51.0805': Pharmacy Technician/ Assistant +'51.0806': Physical Therapy Assistant +'51.0809': Anesthesiologist Assistant +'51.0810': Emergency Care Attendant (EMT Ambulance) +'51.0811': Pathology/ Pathologist Assistant +'51.0812': Respiratory Therapy Technician/ Assistant +'51.0813': Chiropractic Technician/ Assistant +'51.0814': Radiologist Assistant +'51.0815': Lactation Consultant +'51.0816': Speech-Language Pathology Assistant +'51.0899': Allied Health and Medical Assisting Services, Other +'51.0901': Cardiovascular Technology/ Technologist +'51.0902': Electrocardiograph Technology +'51.0903': Electroneurodiagnostic/ Electroencephalographic Technology/ Technologist +'51.0904': Emergency Medical Technology (EMT Paramedic) +'51.0905': Nuclear Medical Technology/ Technologist +'51.0906': Perfusion Technology/ Perfusionist +'51.0907': Medical Radiologic Technology/ Science - Radiation Therapist +'51.0908': Respiratory Care Therapy/ Therapist +'51.0909': Surgical Technology/ Technologist +'51.0910': Diagnostic Medical Sonography/ Sonographer and Ultrasound Technician +'51.0911': Radiologic Technology/ Science - Radiographer +'51.0912': Physician Assistant +'51.0913': Athletic Training/ Trainer +'51.0914': Gene/ Genetic Therapy +'51.0915': Cardiopulmonary Technology/ Technologist +'51.0916': Radiation Protection/ Health Physics Technician +'51.0917': Polysomnography +'51.0918': Hearing Instrument Specialist +'51.0919': Mammography Technology +'51.0920': Magnetic Resonance Imaging (MRI) Technology +'51.0921': Hyperbaric Medicine Technology +'51.0922': Intraoperative Neuromonitoring Technology +'51.0923': Orthopedic Technology +'51.0999': Allied Health Diagnostic, Intervention, and Treatment Professions, Other +'51.1001': Blood Bank Technology Specialist +'51.1002': Cytotechnology/ Cytotechnologist +'51.1003': Hematology Technology +'51.1004': Clinical/ Medical Laboratory Technician +'51.1005': Clinical Laboratory Science/ Medical Technology/ Technologist +'51.1006': Ophthalmic Laboratory Technology +'51.1007': Histologic Technology/ Histotechnologist +'51.1008': Histologic Technician +'51.1009': Phlebotomy Technician/ Phlebotomist +'51.1010': Cytogenetics/ Genetics/ Clinical Genetics Technology/ Technologist +'51.1011': Renal/ Dialysis Technologist/ Technician +'51.1012': Sterile Processing Technology +'51.1099': Clinical/ Medical Laboratory Science and Allied Professions, Other +'51.1101': Pre-Dentistry Studies +'51.1102': Pre-Medicine/ Pre-Medical Studies +'51.1103': Pre-Pharmacy Studies +'51.1105': Pre-Nursing Studies +'51.1106': Pre-Chiropractic Studies +'51.1107': Pre-Occupational Therapy Studies +'51.1108': Pre-Optometry Studies +'51.1109': Pre-Physical Therapy Studies +'51.1110': Pre-Art Therapy +'51.1111': Pre-Physician Assistant +'51.1199': Health/ Medical Preparatory Programs, Other +'51.1201': Medicine +'51.1202': Osteopathic Medicine/ Osteopathy +'51.1203': Podiatric Medicine/ Podiatry +'51.1299': Medicine, Other +'51.1401': Medical Science/ Scientist +'51.1402': Clinical and Translational Science +'51.1403': Pain Management +'51.1404': Temporomandibular Disorders and Orofacial Pain +'51.1405': Tropical Medicine +'51.1499': Medical Clinical Sciences/ Graduate Medical Studies, Other +51.1499b: Clinical Investigation and Sciencesb +'51.1501': Substance Abuse/ Addiction Counseling +'51.1502': Psychiatric/ Mental Health Services Technician +'51.1503': Clinical/ Medical Social Work +'51.1504': Community Health Services/ Liaison/ Counseling +'51.1505': Marriage and Family Therapy/ Counseling +'51.1506': Clinical Pastoral Counseling/ Patient Counseling +'51.1507': Psychoanalysis and Psychotherapy +'51.1508': Mental Health Counseling/ Counselor +'51.1509': Genetic Counseling/ Counselor +'51.1510': Infant/ Toddler Mental Health Services +'51.1511': Medical Family Therapy/ Therapist +'51.1512': Hospice and Palliative Care +'51.1513': Trauma Counseling +'51.1599': Mental and Social Health Services and Allied Professions, Other +'51.1701': Optometry +'51.1801': Opticianry/ Ophthalmic Dispensing Optician +'51.1802': Optometric Technician/ Assistant +'51.1803': Ophthalmic Technician/ Technologist +'51.1804': Orthoptics/ Orthoptist +'51.1899': Ophthalmic and Optometric Support Services and Allied Professions, Other +'51.2001': Pharmacy +'51.2002': Pharmacy Administration and Pharmacy Policy and Regulatory Affairs +'51.2003': Pharmaceutics and Drug Design +'51.2004': Medicinal and Pharmaceutical Chemistry +'51.2005': Natural Products Chemistry and Pharmacognosy +'51.2006': Clinical and Industrial Drug Development +'51.2007': Pharmacoeconomics/ Pharmaceutical Economics +'51.2008': Clinical, Hospital, and Managed Care Pharmacy +'51.2009': Industrial and Physical Pharmacy and Cosmetic Sciences +'51.2010': Pharmaceutical Sciences +'51.2011': Pharmaceutical Marketing and Management +'51.2099': Pharmacy, Pharmaceutical Sciences, and Administration, Other +'51.2201': Public Health, General +'51.2202': Environmental Health +'51.2205': Health/ Medical Physics +'51.2206': Occupational Health and Industrial Hygiene +'51.2207': Public Health Education and Promotion +'51.2208': Community Health and Preventive Medicine +'51.2209': Maternal and Child Health +'51.2210': International Public Health/ International Health +'51.2211': Health Services Administration +51.2211b: Health Services Research +'51.2212': Behavioral Aspects of Health +'51.2213': Patient Safety and Healthcare Quality +'51.2214': Public Health Genetics +'51.2299': Public Health, Other +'51.2300': Rehabilitation and Therapeutic Professions, General +'51.2301': Art Therapy/ Therapist +'51.2302': Dance Therapy/ Therapist +'51.2305': Music Therapy/ Therapist +'51.2306': Occupational Therapy/ Therapist +'51.2307': Orthotist/ Prosthetist +'51.2308': Physical Therapy/ Therapist +'51.2309': Therapeutic Recreation/ Recreational Therapy +'51.2310': Vocational Rehabilitation Counseling/ Counselor +'51.2311': Kinesiotherapy/ Kinesiotherapist +'51.2312': Assistive/ Augmentative Technology and Rehabilitation Engineering +'51.2313': Animal-Assisted Therapy +'51.2314': Rehabilitation Science +'51.2315': Drama Therapy/ Therapist +'51.2316': Horticulture Therapy/ Therapist +'51.2317': Play Therapy/ Therapist +'51.2399': Rehabilitation and Therapeutic Professions, Other +'51.2601': Health Aide +'51.2602': Home Health Aide/ Home Attendant +'51.2603': Medication Aide +'51.2604': Rehabilitation Aide +'51.2605': Physical Therapy Technician/ Aide +'51.2699': Health Aides/ Attendants/ Orderlies, Other +'51.2703': Medical Illustration/ Medical Illustrator +'51.2706': Medical Informatics +51.2706b: Biomedical and Health Informatics +'51.2799': Medical Illustration and Informatics, Other +'51.3101': Dietetics/ Dietitian +'51.3102': Clinical Nutrition/ Nutritionist +'51.3103': Dietetic Technician +'51.3104': Dietitian Assistant +'51.3199': Dietetics and Clinical Nutrition Services, Other +'51.3201': Bioethics/ Medical Ethics +'51.3202': Health Professions Education +'51.3203': Nursing Education +'51.3204': Medical/ Health Humanities +'51.3205': History of Medicine +'51.3206': Arts in Medicine/ Health +'51.3299': Health Professions Education, Ethics, and Humanities, Other +'51.3300': Alternative and Complementary Medicine and Medical Systems, General +'51.3301': Acupuncture and Oriental Medicine +'51.3302': Traditional Chinese Medicine and Chinese Herbology +'51.3303': Naturopathic Medicine/ Naturopathy +'51.3304': Homeopathic Medicine/ Homeopathy +'51.3305': Ayurvedic Medicine/ Ayurveda +'51.3306': Holistic/ Integrative Health +'51.3399': Alternative and Complementary Medicine and Medical Systems, Other +'51.3401': Direct Entry Midwifery +'51.3499': Alternative and Complementary Medical Support Services, Other +'51.3501': Massage Therapy/ Therapeutic Massage +'51.3502': Asian Bodywork Therapy +'51.3503': Somatic Bodywork +'51.3599': Somatic Bodywork and Related Therapeutic Services, Other +'51.3601': Movement Therapy and Movement Education +'51.3602': Yoga Teacher Training/ Yoga Therapy +'51.3603': Hypnotherapy/ Hypnotherapist +'51.3699': Movement and Mind-Body Therapies and Education, Other +'51.3701': Aromatherapy +'51.3702': Herbalism/ Herbalist +'51.3703': Polarity Therapy +'51.3704': Reiki +'51.3799': Energy and Biologically Based Therapies, Other +'51.3801': Registered Nursing/ Registered Nurse +'51.3802': Nursing Administration +'51.3803': Adult Health Nurse/ Nursing +'51.3804': Nurse Anesthetist +'51.3805': Family Practice Nurse/ Nursing +'51.3806': Maternal/ Child Health and Neonatal Nurse/ Nursing +'51.3807': Nurse Midwife/ Nursing Midwifery +'51.3808': Nursing Science +'51.3809': Pediatric Nurse/ Nursing +'51.3810': Psychiatric/ Mental Health Nurse/ Nursing +'51.3811': Public Health/ Community Nurse/ Nursing +'51.3812': Perioperative/ Operating Room and Surgical Nurse/ Nursing +'51.3813': Clinical Nurse Specialist +'51.3814': Critical Care Nursing +'51.3815': Occupational and Environmental Health Nursing +'51.3816': Emergency Room/ Trauma Nursing +'51.3818': Nursing Practice +'51.3819': Palliative Care Nursing +'51.3820': Clinical Nurse Leader +'51.3821': Geriatric Nurse/ Nursing +'51.3822': Women's Health Nurse/ Nursing +'51.3824': Forensic Nursing +'51.3899': Registered Nursing, Nursing Administration, Nursing Research and Clinical + Nursing, Other +'51.3901': Licensed Practical/ Vocational Nurse Training +'51.3902': Nursing Assistant/ Aide and Patient Care Assistant/ Aide +'51.3999': Practical Nursing, Vocational Nursing and Nursing Assistants, Other +'51.9999': Health Professions and Related Clinical Sciences, Other +51.9999b: Health Sciences, Other +'52.0101': Business/ Commerce, General +'52.0201': Business Administration and Management, General +52.0201b: Business Management/ Administration +'52.0202': Purchasing, Procurement/ Acquisitions and Contracts Management +'52.0203': Logistics, Materials, and Supply Chain Management +'52.0204': Office Management and Supervision +'52.0205': Operations Management and Supervision +'52.0206': Non-Profit/ Public/ Organizational Management +'52.0207': Customer Service Management +'52.0208': E-Commerce/ Electronic Commerce +'52.0209': Transportation/ Mobility Management +'52.0210': Research and Development Management +'52.0211': Project Management +'52.0212': Retail Management +'52.0213': Organizational Leadership +'52.0214': Research Administration +'52.0215': Risk Management +'52.0216': Science/ Technology Management +'52.0299': Business Administration, Management and Operations, Other +'52.0301': Accounting +'52.0302': Accounting Technology and Bookkeeping +'52.0303': Auditing +'52.0304': Accounting and Finance +'52.0305': Accounting and Business/ Management +'52.0399': Accounting and Related Services, Other +'52.0401': Administrative Assistant and Secretarial Science, General +'52.0402': Executive Assistant/ Executive Secretary +'52.0406': Receptionist +'52.0407': Business/ Office Automation/ Technology/ Data Entry +'52.0408': General Office Occupations and Clerical Services +'52.0409': Parts, Warehousing, and Inventory Management Operations +'52.0410': Traffic, Customs, and Transportation Clerk/ Technician +'52.0411': Customer Service Support/ Call Center/ Teleservice Operation +'52.0499': Business Operations Support and Secretarial Services, Other +'52.0501': Business/ Corporate Communications, General +'52.0502': Grantsmanship +'52.0599': Business/ Corporate Communications, Other +'52.0601': Business/ Managerial Economics +'52.0701': Entrepreneurship/ Entrepreneurial Studies +'52.0702': Franchising and Franchise Operations +'52.0703': Small Business Administration/ Management +'52.0704': Social Entrepreneurship +'52.0799': Entrepreneurial and Small Business Operations, Other +'52.0801': Finance, General +'52.0803': Banking and Financial Support Services +'52.0804': Financial Planning and Services +'52.0806': International Finance +'52.0807': Investments and Securities +'52.0808': Public Finance +'52.0809': Credit Management +'52.0810': Financial Risk Management +'52.0899': Finance and Financial Management Services, Other +'52.0901': Hospitality Administration/ Management, General +'52.0903': Tourism and Travel Services Management +'52.0904': Hotel/ Motel Administration/ Management +'52.0905': Restaurant/ Food Services Management +'52.0906': Resort Management +'52.0907': Meeting and Event Planning +'52.0908': Casino Management +'52.0909': Hotel, Motel, and Restaurant Management +'52.0910': Brewery/ Brewpub Operations/ Management +'52.0999': Hospitality Administration/ Management, Other +'52.1001': Human Resources Management/ Personnel Administration, General +'52.1002': Labor and Industrial Relations +'52.1003': Organizational Behavior Studies +'52.1004': Labor Studies +'52.1005': Human Resources Development +'52.1006': Executive/ Career Coaching +'52.1099': Human Resources Management and Services, Other +'52.1101': International Business/ Trade/ Commerce +'52.1201': Management Information Systems, General +'52.1206': Information Resources Management +'52.1207': Knowledge Management +'52.1299': Management Information Systems and Services, Other +'52.1301': Management Science +'52.1302': Business Statistics +'52.1304': Actuarial Science +'52.1399': Management Sciences and Quantitative Methods, Other +'52.1401': Marketing/ Marketing Management, General +'52.1402': Marketing Research +'52.1403': International Marketing +'52.1404': Digital Marketing +'52.1499': Marketing, Other +'52.1501': Real Estate +'52.1601': Taxation +'52.1701': Insurance +'52.1801': Sales, Distribution, and Marketing Operations, General +'52.1802': Merchandising and Buying Operations +'52.1803': Retailing and Retail Operations +'52.1804': Selling Skills and Sales Operations +'52.1899': General Merchandising, Sales, and Related Marketing Operations, Other +'52.1901': Auctioneering +'52.1902': Fashion Merchandising +'52.1903': Fashion Modeling +'52.1904': Apparel and Accessories Marketing Operations +'52.1905': Tourism and Travel Services Marketing Operations +'52.1906': Tourism Promotion Operations +'52.1907': Vehicle and Vehicle Parts and Accessories Marketing Operations +'52.1908': Business and Personal/ Financial Services Marketing Operations +'52.1909': Special Products Marketing Operations +'52.1910': Hospitality and Recreation Marketing Operations +'52.1999': Specialized Merchandising, Sales, and Marketing Operations, Other +'52.2001': Construction Management, General +'52.2002': Construction Project Management +'52.2099': Construction Management, Other +'52.2101': Telecommunications Management +'52.9999': Business, Management, Marketing, and Related Support Services, Other +'54.0101': History, General +'54.0102': American History (United States) +54.0102b: African-American/ Black History +'54.0103': European History +'54.0104': History and Philosophy of Science and Technology +'54.0105': Public/ Applied History +'54.0106': Asian History +'54.0107': Canadian History +'54.0108': Military History +'54.0199': History, Other +54.0199c: African History +54.0199d: Latin American History +54.0199e: Middle/ Near East History diff --git a/src/app.py b/src/app.py index 288c14f2d..2c1a4903e 100755 --- a/src/app.py +++ b/src/app.py @@ -827,7 +827,13 @@ def render_form(**kwargs): institutions = list(global_data.get_mappings().project_institution.items()) session.pop("form_data", None) - return render_template("generate_project_yaml.html.j2", form=form, infos=form.infos, institutions=institutions, **kwargs) + return render_template( + "generate_project_yaml.html.j2", + form=form, + infos=form.infos, + institutions=institutions, + fields_of_science=global_data.get_mappings().field_of_science.items(), + **kwargs) def validate_project_name(form, field): project_names = set(x['Name'] for x in global_data.get_projects()['Projects']['Project']) @@ -837,6 +843,8 @@ def validate_project_name(form, field): form = GenerateProjectForm(request.form, **request.args, **session.get("form_data", {})) form.field_of_science.choices = _make_choices(global_data.get_mappings().nsfscience.keys(), select_one=True) + + # Add this validator if it is not their if not len(form.project_name.validators) > 1: form.project_name.validators.append(validate_project_name) diff --git a/src/templates/formmacros.html.j2 b/src/templates/formmacros.html.j2 index 6bdbefc65..7698aa93f 100644 --- a/src/templates/formmacros.html.j2 +++ b/src/templates/formmacros.html.j2 @@ -1,10 +1,10 @@ {% macro render_field(field, helptext='', show_label=true, disabled=false, asterisk=true) -%}
{% if show_label %}{{ field.label }}{% if asterisk %}*{% endif %}{% endif %} - {% if helptext -%} + {% if helptext or field.description -%} {% with helpid = field.id+"Help" -%} {{ field(class_="form-control", aria_describedby=helpid, **kwargs)|safe }} - {{ helptext }} + {{ helptext }}{{ field.description }} {%- endwith %} {%- else -%} {{ field(class_="form-control", disabled=disabled, **kwargs)|safe }} diff --git a/src/templates/generate_project_yaml.html.j2 b/src/templates/generate_project_yaml.html.j2 index f6f6fcc7c..4a63a3f9a 100644 --- a/src/templates/generate_project_yaml.html.j2 +++ b/src/templates/generate_project_yaml.html.j2 @@ -53,6 +53,12 @@ Project YAML Generator {{ M.render_field(form.project_name) }} {{ M.render_field(form.pi_department_or_organization) }} + {{ M.render_field(form.field_of_science_id, list="fields_of_science") }} + + {% for fos in fields_of_science %} + + {% endfor %} + {{ M.render_field(form.field_of_science) }} {{ M.render_field(form.description) }}
diff --git a/src/webapp/forms.py b/src/webapp/forms.py index c8c69e6ee..002128715 100644 --- a/src/webapp/forms.py +++ b/src/webapp/forms.py @@ -308,7 +308,19 @@ class GenerateProjectForm(FlaskForm): pi_last_name = StringField("PI Last Name", [InputRequired()]) pi_department_or_organization = StringField("PI Department or Organization", [InputRequired()]) pi_institution = StringField("PI Institution", [InputRequired()]) - field_of_science = SelectField("Field of Science", [InputRequired()]) + field_of_science = SelectField("Field of Science (Legacy)", [InputRequired()]) + field_of_science_id = StringField( + "Field of Science ID", + [InputRequired()], + description=""" + To help the OSPool track impact on fields of science we ask you to download and pick the closest matching + `SED-CIP code\\title` from the + + SED-CIP table + . Note that a maximum of 512 options is shown, if you don't see your field of science initially + type the title/code in the input. + """ + ) description = TextAreaField(None, render_kw={ "style": "font-family:monospace; font-size:small;", @@ -334,6 +346,7 @@ def __init__(self, *args, **kwargs): self.pi_department_or_organization.data = kwargs.get("pi_department_or_organization", self.pi_department_or_organization.data) self.pi_institution.data = kwargs.get("pi_institution", self.pi_institution.data) self.field_of_science.data = kwargs.get("field_of_science", self.field_of_science.data) + self.field_of_science_id.data = kwargs.get("field_of_science_id", self.field_of_science_id.data) self.description.data = kwargs.get("description", self.description.data) self.infos = "" @@ -349,13 +362,15 @@ def get_yaml(self) -> str: "FieldOfScience": self.field_of_science.data, "Department": self.pi_department_or_organization.data, "Organization": self.pi_institution.data, - "PIName": f"{self.pi_first_name.data} {self.pi_last_name.data}" + "PIName": f"{self.pi_first_name.data} {self.pi_last_name.data}", + "FieldOfScienceID": self.field_of_science_id.data, }) def as_dict(self): return { "description": self.description.data, "field_of_science": self.field_of_science.data, + "field_of_science_id": self.field_of_science_id.data, "pi_department_or_organization": self.pi_department_or_organization.data, "pi_institution": self.pi_institution.data, "pi_first_name": self.pi_first_name.data, diff --git a/src/webapp/mappings.py b/src/webapp/mappings.py index ceaed4989..e2e53b0be 100755 --- a/src/webapp/mappings.py +++ b/src/webapp/mappings.py @@ -18,10 +18,11 @@ class Mappings: - def __init__(self, nsfscience: Dict, project_institution: Dict, institution_ids: List): + def __init__(self, nsfscience: Dict, project_institution: Dict, institution_ids: List, field_of_science: Dict): self.nsfscience = nsfscience self.project_institution = project_institution self.institution_ids = institution_ids + self.field_of_science = field_of_science def get_nsfscience(indir: str, strict: bool) -> Dict: @@ -37,6 +38,19 @@ def get_nsfscience(indir: str, strict: bool) -> Dict: return nsfscience +def get_field_of_science(indir: str, strict: bool) -> Dict: + field_of_science = {} + try: + field_of_science = load_yaml_file(os.path.join(indir, "field_of_science.yaml")) + except yaml.YAMLError: + if strict: + raise + else: + # load_yaml_file() already logs the specific error + log.error("skipping (non-strict mode)") + return field_of_science + + def get_project_institution(indir: str, strict: bool) -> Dict: project_institution = {} try: @@ -103,5 +117,6 @@ def get_institution_ids(indir: str, strict: bool) -> List: def get_mappings(indir="../mappings", strict=False): mappings = Mappings(nsfscience=get_nsfscience(indir, strict), project_institution=get_project_institution(indir, strict), - institution_ids=get_institution_ids(indir, strict)) + institution_ids=get_institution_ids(indir, strict), + field_of_science=get_field_of_science(indir, strict)) return mappings From bf3e97a80263e185fe1b757ddf7a128dbfb9fbb5 Mon Sep 17 00:00:00 2001 From: Cannon Lock <49032265+CannonLock@users.noreply.github.com> Date: Wed, 17 Apr 2024 14:42:45 -0500 Subject: [PATCH 175/190] Pull Institutions from Canonical API (#3796) * Pull Institutions from Canonical API * Move Institutions API endpoint to config * Move Institutions API endpoint to config --- src/app.py | 10 ++++++++-- src/webapp/forms.py | 8 +++++++- src/webapp/models.py | 1 + 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/src/app.py b/src/app.py index 2c1a4903e..68fbfbd8d 100755 --- a/src/app.py +++ b/src/app.py @@ -823,6 +823,12 @@ def render_form(**kwargs): @app.route("/generate_project_yaml", methods=["GET", "POST"]) def generate_project_yaml(): + institution_api_data = requests.get(f"{global_data.config.get('INSTITUTIONS_API')}/institution_ids").json() + institution_short_names = {x[1]: x[0] for x in global_data.get_mappings().project_institution.items()} + institutions = [] + for institution in institution_api_data: + institutions.append((institution['id'], institution['name'], institution_short_names.get(institution['name'], ""))) + def render_form(**kwargs): institutions = list(global_data.get_mappings().project_institution.items()) session.pop("form_data", None) @@ -871,7 +877,7 @@ def validate_project_name(form, field): # Gather necessary data create_pr_response = create_file_pr( file_path=f"projects/{request.values['project_name']}.yaml", - file_content=form.get_yaml(), + file_content=form.get_yaml(institution_api_data), branch=f"add-project-{request.values['project_name']}", message=f"Add Project {request.values['project_name']}", committer=GithubUser.from_token(session["github_login"]['access_token']), @@ -904,7 +910,7 @@ def validate_project_name(form, field): # Generate the yaml for manual addition if request.method == "POST" and "manual_submit" in request.form: - form.yaml_output.data = form.get_yaml() + form.yaml_output.data = form.get_yaml(institution_api_data) return render_form(form_complete=True) return render_form() diff --git a/src/webapp/forms.py b/src/webapp/forms.py index 002128715..c2cb96282 100644 --- a/src/webapp/forms.py +++ b/src/webapp/forms.py @@ -1,5 +1,7 @@ import datetime +from typing import Dict +import requests import yaml from flask_wtf import FlaskForm from wtforms import SelectField, SelectMultipleField, StringField, \ @@ -356,13 +358,17 @@ def validate_project_name(form, field): intersection = set(field.data).intersection(set('/<>:\"\\|?* ')) raise ValidationError(f"Must be valid filename, invalid chars: {','.join(intersection)}") - def get_yaml(self) -> str: + def get_yaml(self, institution_api_data: Dict) -> str: + + institutions_name_mapped = {i["name"]: i["id"] for i in institution_api_data} + return yaml.dump({ "Description": self.description.data, "FieldOfScience": self.field_of_science.data, "Department": self.pi_department_or_organization.data, "Organization": self.pi_institution.data, "PIName": f"{self.pi_first_name.data} {self.pi_last_name.data}", + "InstitutionID": institutions_name_mapped.get(self.pi_institution.data, 'Unknown'), "FieldOfScienceID": self.field_of_science_id.data, }) diff --git a/src/webapp/models.py b/src/webapp/models.py index cc8d13429..d9288586d 100644 --- a/src/webapp/models.py +++ b/src/webapp/models.py @@ -67,6 +67,7 @@ def __init__(self, config=None, strict=False): config = {} config.setdefault("TOPOLOGY_DATA_DIR", ".") config.setdefault("CONTACT_DATA_DIR", None) + config.setdefault("INSTITUTIONS_API", "https://topology-institutions.osg-htc.org/api") config.setdefault("CILOGON_LDAP_URL", "ldaps://ldap.cilogon.org") config.setdefault("CILOGON_LDAP_USER", "uid=readonly_user,ou=system,o=OSG,o=CO,dc=cilogon,dc=org") From 9cc346672fa2c83bb26d9b1653bbe72f0ace6204 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Wed, 17 Apr 2024 18:49:35 -0700 Subject: [PATCH 176/190] Add downtime for Georgia_Tech_PACE_GridFTP2 due to Poor transfer rate - Overloaded? Add downtime for Georgia_Tech_PACE_GridFTP2 due to Poor transfer rate - Overloaded? --- .../Georgia Tech PACE OSG 2_downtime.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/topology/Georgia Institute of Technology/Georgia Tech/Georgia Tech PACE OSG 2_downtime.yaml b/topology/Georgia Institute of Technology/Georgia Tech/Georgia Tech PACE OSG 2_downtime.yaml index 0c23d3296..633d15c7c 100644 --- a/topology/Georgia Institute of Technology/Georgia Tech/Georgia Tech PACE OSG 2_downtime.yaml +++ b/topology/Georgia Institute of Technology/Georgia Tech/Georgia Tech PACE OSG 2_downtime.yaml @@ -752,3 +752,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1784049200 + Description: Poor transfer rate - Overloaded? + Severity: Outage + StartTime: Apr 17, 2024 08:00 +0000 + EndTime: Apr 24, 2024 08:00 +0000 + CreatedTime: Apr 18, 2024 01:48 +0000 + ResourceName: Georgia_Tech_PACE_GridFTP2 + Services: + - XRootD cache server +# --------------------------------------------------------- From f6cb1ab4ee5b844ccd430a4d2a54cade6107c1a5 Mon Sep 17 00:00:00 2001 From: Andrew Owen <60940495+aowen-uwmad@users.noreply.github.com> Date: Thu, 18 Apr 2024 11:21:17 -0500 Subject: [PATCH 177/190] Create ULLafayette_Hei.yaml Per https://support.opensciencegrid.org/a/tickets/75652 --- projects/ULLafayette_Hei.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 projects/ULLafayette_Hei.yaml diff --git a/projects/ULLafayette_Hei.yaml b/projects/ULLafayette_Hei.yaml new file mode 100644 index 000000000..c14e9c749 --- /dev/null +++ b/projects/ULLafayette_Hei.yaml @@ -0,0 +1,10 @@ +Department: Center for Advanced Computer Studies +Description: While fine-tuning large language models (LLMs) to follow instructions + has emerged as a pivotal paradigm, enabling promising applications such as ChatGPT + and GitHub Copilot, the capability to follow arbitrary instructions also introduces + acute vulnerabilities. This project aims to deepen understanding of the security + and privacy risks associated with large instruction-tuned language models and to + obtain insights on how to mitigate these risks. +FieldOfScience: Computer and Information Science and Engineering +Organization: University of Louisiana at Lafayette +PIName: Xiali Hei From fa374dc85073487b18f817db8601725e954bb795 Mon Sep 17 00:00:00 2001 From: Tony Weaver <55799947+aweaver1fandm@users.noreply.github.com> Date: Thu, 18 Apr 2024 12:28:04 -0400 Subject: [PATCH 178/190] Create FANDM-ITS_downtime.yaml --- .../FANDM-ITS/FANDM-ITS_downtime.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 topology/Franklin and Marshall College/FANDM-ITS/FANDM-ITS_downtime.yaml diff --git a/topology/Franklin and Marshall College/FANDM-ITS/FANDM-ITS_downtime.yaml b/topology/Franklin and Marshall College/FANDM-ITS/FANDM-ITS_downtime.yaml new file mode 100644 index 000000000..a9eb49489 --- /dev/null +++ b/topology/Franklin and Marshall College/FANDM-ITS/FANDM-ITS_downtime.yaml @@ -0,0 +1,12 @@ +- Class: SCHEDULED + ID: 1784575615 + Description: General cluster maintenance (software updates, etc.) and reconfiguring Slurm partitions. + We are removing osg partition. After maintenance OSG jobs should use partition name nodes + Severity: Outage + StartTime: Apr 26, 2024 16:00 +0000 + EndTime: May 13, 2024 12:00 +0000 + CreatedTime: Apr 18, 2024 16:26 +0000 + ResourceName: FANDM-ITS-CE1 + Services: + - CE +# --------------------------------------------------------- From 3c4d1ea86a3546dc508c1b6c75f307378de61986 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 18 Apr 2024 11:40:54 -0700 Subject: [PATCH 179/190] Creating Facility HPe Creating Facility HPe --- .../Hewlett Packard Labs/SITE.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 topology/Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml diff --git a/topology/Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml b/topology/Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml new file mode 100644 index 000000000..ff0afb3e6 --- /dev/null +++ b/topology/Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml @@ -0,0 +1,10 @@ +AddressLine1: 940 N McCarthy Blvd +AddressLine2: +City: Milpitas +Country: United States +Description: Hewlett Packard Labs +Latitude:37.43 +LongName: Hewlett Packard Laboratory +Longitude: -121.923 +State: CA +Zipcode: 95035 From 65cd88e4755d868a3c43d8326b04d2e535e39735 Mon Sep 17 00:00:00 2001 From: mwestphall Date: Thu, 18 Apr 2024 13:42:23 -0500 Subject: [PATCH 180/190] Update projects/ULLafayette_Hei.yaml for multiline description --- projects/ULLafayette_Hei.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/ULLafayette_Hei.yaml b/projects/ULLafayette_Hei.yaml index c14e9c749..10ff61362 100644 --- a/projects/ULLafayette_Hei.yaml +++ b/projects/ULLafayette_Hei.yaml @@ -1,5 +1,6 @@ Department: Center for Advanced Computer Studies -Description: While fine-tuning large language models (LLMs) to follow instructions +Description: > +While fine-tuning large language models (LLMs) to follow instructions has emerged as a pivotal paradigm, enabling promising applications such as ChatGPT and GitHub Copilot, the capability to follow arbitrary instructions also introduces acute vulnerabilities. This project aims to deepen understanding of the security From 1ba1c0f889fce4bfdcf1be06074bb43387724cdf Mon Sep 17 00:00:00 2001 From: mwestphall Date: Thu, 18 Apr 2024 15:06:46 -0500 Subject: [PATCH 181/190] Fix indent --- projects/ULLafayette_Hei.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/ULLafayette_Hei.yaml b/projects/ULLafayette_Hei.yaml index 10ff61362..d0b565e83 100644 --- a/projects/ULLafayette_Hei.yaml +++ b/projects/ULLafayette_Hei.yaml @@ -1,6 +1,6 @@ Department: Center for Advanced Computer Studies Description: > -While fine-tuning large language models (LLMs) to follow instructions + While fine-tuning large language models (LLMs) to follow instructions has emerged as a pivotal paradigm, enabling promising applications such as ChatGPT and GitHub Copilot, the capability to follow arbitrary instructions also introduces acute vulnerabilities. This project aims to deepen understanding of the security From 9cfab2009e93583941c534726fdaf95f5da3cb53 Mon Sep 17 00:00:00 2001 From: mwestphall Date: Thu, 18 Apr 2024 15:12:02 -0500 Subject: [PATCH 182/190] Add Institution ID --- projects/ULLafayette_Hei.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/ULLafayette_Hei.yaml b/projects/ULLafayette_Hei.yaml index d0b565e83..722558c90 100644 --- a/projects/ULLafayette_Hei.yaml +++ b/projects/ULLafayette_Hei.yaml @@ -9,3 +9,4 @@ Description: > FieldOfScience: Computer and Information Science and Engineering Organization: University of Louisiana at Lafayette PIName: Xiali Hei +InstitutionID: 'https://osg-htc.org/iid/2cp294m0uq0z' From d11053b4b01ff754577450e43e2fdbc59d3e79e5 Mon Sep 17 00:00:00 2001 From: mwestphall Date: Thu, 18 Apr 2024 15:18:01 -0500 Subject: [PATCH 183/190] Fix Spacing --- .../Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml b/topology/Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml index ff0afb3e6..5c73f2a6e 100644 --- a/topology/Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml +++ b/topology/Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml @@ -3,7 +3,7 @@ AddressLine2: City: Milpitas Country: United States Description: Hewlett Packard Labs -Latitude:37.43 +Latitude: 37.43 LongName: Hewlett Packard Laboratory Longitude: -121.923 State: CA From f2b1f0aba3cf8f301ac8a23b105f5a03fc77ef59 Mon Sep 17 00:00:00 2001 From: mwestphall Date: Thu, 18 Apr 2024 16:21:20 -0500 Subject: [PATCH 184/190] Update Hewlett Packard Labs LongName --- .../Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml b/topology/Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml index 5c73f2a6e..856be643e 100644 --- a/topology/Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml +++ b/topology/Hewlett Packard Enterprise/Hewlett Packard Labs/SITE.yaml @@ -4,7 +4,7 @@ City: Milpitas Country: United States Description: Hewlett Packard Labs Latitude: 37.43 -LongName: Hewlett Packard Laboratory +LongName: Hewlett Packard Labs Longitude: -121.923 State: CA Zipcode: 95035 From 25908f60463f789a779aeaccd8a4b5a14ff4519e Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Thu, 18 Apr 2024 16:38:27 -0700 Subject: [PATCH 185/190] Adding FDP cache Adding FDP cache --- .../SDSC-NRP.yaml | 27 ++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml index 938a9d318..d41d79203 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml @@ -66,7 +66,7 @@ Resources: Primary: Name: Fabio Andrijauskas ID: OSG1000162 - DN: CN=sdsc-s3-origin.nationalresearchplatform.org + DN: /CN=sdsc-s3-origin.nationalresearchplatform.org FQDN: sdsc-s3-origin.nationalresearchplatform.org Services: XRootD origin server: @@ -76,3 +76,28 @@ Resources: auth_endpoint_override: sdsc-s3-origin.nationalresearchplatform.org:50123 AllowedVOs: - ANY + SDSC_NRP_FDP_OSDF_CACHE: + Active: true + Description: SDSC NRP OSDF FDP project cache + ContactLists: + Administrative Contact: + Primary: + Name: Fabio Andrijauskas + ID: OSG1000162 + Secondary: + Name: Diego Davila + ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f + Security Contact: + Primary: + Name: Fabio Andrijauskas + ID: OSG1000162 + DN: /CN=fdp-cache.nationalresearchplatform.org + FQDN: fdp-cache.nationalresearchplatform.org + Services: + XRootD cache server: + Description: SDSC NRP FDP OSDF cache + Details: + endpoint_override: fdp-cache.nationalresearchplatform.org:8443 + auth_endpoint_override: sdsc-s3-origin.nationalresearchplatform.org:8443 + AllowedVOs: + - ANY From 9660c95a9268e7d474b3ef76e876f6f70205bca6 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Fri, 19 Apr 2024 09:13:35 -0700 Subject: [PATCH 186/190] Retiring nih-origin.osgdev.chtc.io Retiring nih-origin.osgdev.chtc.io --- topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml b/topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml index e61edbdb7..4a2bae712 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml @@ -159,7 +159,7 @@ Resources: - ANY CHTC_NIH_ORIGIN: - Active: true + Active: false Description: This is an origin server serving NIH image analysis data ID: 1454 ContactLists: From 979de2c92dcd340e4961240bb1822c762add7fbb Mon Sep 17 00:00:00 2001 From: Colby Walsworth Date: Fri, 19 Apr 2024 11:45:54 -0700 Subject: [PATCH 187/190] remove UNR downtime --- .../University of Nevada Reno/UNR-CC_downtime.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/Nevada System of Higher Education/University of Nevada Reno/UNR-CC_downtime.yaml b/topology/Nevada System of Higher Education/University of Nevada Reno/UNR-CC_downtime.yaml index fed2cf942..ef25eade4 100644 --- a/topology/Nevada System of Higher Education/University of Nevada Reno/UNR-CC_downtime.yaml +++ b/topology/Nevada System of Higher Education/University of Nevada Reno/UNR-CC_downtime.yaml @@ -3,7 +3,7 @@ Description: SSH access not working Severity: Outage StartTime: Apr 01, 2024 20:43 +0000 - EndTime: Apr 01, 2026 20:43 +0000 + EndTime: Apr 18, 2024 20:43 +0000 CreatedTime: Apr 01, 2024 20:43 +0000 ResourceName: UNR-CC-CE1 Services: From 6bfe6efe4d43c93e1dfa3a0229f282457687f5cb Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Fri, 19 Apr 2024 12:03:05 -0700 Subject: [PATCH 188/190] Adding IN2P3-CC_OSDF_CACHE to LIGO Adding IN2P3-CC_OSDF_CACHE to LIGO --- virtual-organizations/LIGO.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/virtual-organizations/LIGO.yaml b/virtual-organizations/LIGO.yaml index d82cfdcd4..a1bde9623 100644 --- a/virtual-organizations/LIGO.yaml +++ b/virtual-organizations/LIGO.yaml @@ -99,6 +99,7 @@ DataFederations: - CIT_LIGO_ORIGIN - LIGO-StashCache-Origin AllowedCaches: &ligo-allowed-caches + - IN2P3-CC_OSDF_CACHE - SUT-STASHCACHE - Georgia_Tech_PACE_GridFTP2 - Stashcache-UCSD From 62c3d8b54a544938d9852b74d31ebd63c6f55fb8 Mon Sep 17 00:00:00 2001 From: Jadir Marra da Silva Date: Sat, 20 Apr 2024 06:29:35 -0300 Subject: [PATCH 189/190] Update SPRACE_downtime.yaml Site offline no more info so far. --- .../SPRACE/SPRACE_downtime.yaml | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml b/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml index 30a13d8b0..a882e331c 100644 --- a/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml +++ b/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml @@ -3181,3 +3181,80 @@ Services: - Squid # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1786053134 + Description: Site is offline - Network unreachable + Severity: Outage + StartTime: Apr 20, 2024 09:28 +0000 + EndTime: Apr 20, 2024 21:00 +0000 + CreatedTime: Apr 20, 2024 09:28 +0000 + ResourceName: BR-Sprace BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1786053135 + Description: Site is offline - Network unreachable + Severity: Outage + StartTime: Apr 20, 2024 09:28 +0000 + EndTime: Apr 20, 2024 21:00 +0000 + CreatedTime: Apr 20, 2024 09:28 +0000 + ResourceName: BR-Sprace LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1786053136 + Description: Site is offline - Network unreachable + Severity: Outage + StartTime: Apr 20, 2024 09:28 +0000 + EndTime: Apr 20, 2024 21:00 +0000 + CreatedTime: Apr 20, 2024 09:28 +0000 + ResourceName: SPRACE + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1786053137 + Description: Site is offline - Network unreachable + Severity: Outage + StartTime: Apr 20, 2024 09:28 +0000 + EndTime: Apr 20, 2024 21:00 +0000 + CreatedTime: Apr 20, 2024 09:28 +0000 + ResourceName: SPRACE-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1786053138 + Description: Site is offline - Network unreachable + Severity: Outage + StartTime: Apr 20, 2024 09:28 +0000 + EndTime: Apr 20, 2024 21:00 +0000 + CreatedTime: Apr 20, 2024 09:28 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1786053139 + Description: Site is offline - Network unreachable + Severity: Outage + StartTime: Apr 20, 2024 09:28 +0000 + EndTime: Apr 20, 2024 21:00 +0000 + CreatedTime: Apr 20, 2024 09:28 +0000 + ResourceName: T2_BR_SPRACE-squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1786053140 + Description: Site is offline - Network unreachable + Severity: Outage + StartTime: Apr 20, 2024 09:28 +0000 + EndTime: Apr 20, 2024 21:00 +0000 + CreatedTime: Apr 20, 2024 09:28 +0000 + ResourceName: T2_BR_SPRACE-squid2 + Services: + - Squid +# --------------------------------------------------------- From 667c20c09aa7023a95e0479695002a8e7af73389 Mon Sep 17 00:00:00 2001 From: Fabio Andrijauskas Date: Mon, 22 Apr 2024 13:48:49 -0700 Subject: [PATCH 190/190] Add downtime for PIC_STASHCACHE_CACHE due to overloaded Add downtime for PIC_STASHCACHE_CACHE due to overloaded --- .../IFAE/PIC/PIC-CachingInfrastructure_downtime.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/topology/IFAE/PIC/PIC-CachingInfrastructure_downtime.yaml b/topology/IFAE/PIC/PIC-CachingInfrastructure_downtime.yaml index 7a3fa9f75..141b3aa2f 100644 --- a/topology/IFAE/PIC/PIC-CachingInfrastructure_downtime.yaml +++ b/topology/IFAE/PIC/PIC-CachingInfrastructure_downtime.yaml @@ -19,3 +19,15 @@ ResourceName: PIC_STASHCACHE_CACHE Services: - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1788188780 + Description: Overloaded + Severity: Outage + StartTime: Apr 22, 2024 19:30 +0000 + EndTime: Apr 29, 2024 19:30 +0000 + CreatedTime: Apr 22, 2024 20:47 +0000 + ResourceName: PIC_STASHCACHE_CACHE + Services: + - XRootD cache server +# ---------------------------------------------------------