<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.biocomputeobject.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Keeneyjg</id>
	<title>BCOeditor Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.biocomputeobject.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Keeneyjg"/>
	<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/Special:Contributions/Keeneyjg"/>
	<updated>2026-05-20T05:56:05Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.2</generator>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=FAQs&amp;diff=1138</id>
		<title>FAQs</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=FAQs&amp;diff=1138"/>
		<updated>2025-10-15T12:58:08Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Submitting BCOs to FDA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Go back to [[Main Page|BioCompute Objects]].'''&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
1. '''How can I build a BioCompute Object (BCO)?'''&lt;br /&gt;
&lt;br /&gt;
You have several options for building a BCO. You can use the standalone &amp;quot;builder&amp;quot; tool available [https://biocomputeobject.org/builder here]. Alternatively, if you're using a platform that supports BioCompute, you can utilize tools built into that platform such as DNAnexus/precisionFDA, Galaxy, or Seven Bridges/Cancer Genomics Cloud. You may also choose to build an output into your workflow as a JSON file conforming to the standard.&lt;br /&gt;
&lt;br /&gt;
2. '''What are the minimum requirements for conformance with the BioCompute standard?''' &lt;br /&gt;
&lt;br /&gt;
The minimum requirements include inputs, outputs, data transformation steps, environment details, individuals involved in pipeline development or execution, and a plain text description of the pipeline's objectives. The standard allows for much greater detail if needed, and is extensible to include substantially more. The standard is organized into 8 domains, 5 of which are required and 3 are optional.&lt;br /&gt;
&lt;br /&gt;
3. '''How can I ensure my submission validates against the BioCompute schema?''' &lt;br /&gt;
&lt;br /&gt;
Your submission should validate against the schema, which you can reference directly at the top level domain provided [https://opensource.ieee.org/2791-object/ieee-2791-schema/-/raw/master/2791object.json?ref_type=heads here].&lt;br /&gt;
&lt;br /&gt;
4. '''Where can I find more information about the BioCompute standard and its organization?''' The official repository for the standard is open access and can be found [https://opensource.ieee.org/2791-object/ieee-2791-schema/ here].&lt;br /&gt;
&lt;br /&gt;
5. '''Can you provide an example of a completed BioCompute Object (BCO)?''' &lt;br /&gt;
&lt;br /&gt;
Yes, you can view an example of a completed BCO [https://biocomputeobject.org/viewer?https://biocomputeobject.org/BCO_000452/1.0 here]. You can explore both table and raw JSON views.&lt;br /&gt;
&lt;br /&gt;
6.     '''Where would information regarding data sources and standard operating procedures be? Which specific domain?'''&lt;br /&gt;
&lt;br /&gt;
Data sources should be recorded as described by the input_subdomain in the “[[Iodomain|io_domain]]” and the input_list in the “[[Description-domain|description_domain]]”. Standard operating procedures and any other information about data transformations SHOULD be elaborated upon in the “[[Usability-domain|usability_domain]]”.&lt;br /&gt;
&lt;br /&gt;
7.     '''How can a third-party access URIs in a BCO?'''&lt;br /&gt;
&lt;br /&gt;
URIs can be directed to local paths. In these cases, the necessary files are shared with the parties that will require access. If it is a link to a public domain, it will be easily accessible for all. &lt;br /&gt;
&lt;br /&gt;
8.     '''What is a SHA1 Checksum?''' &lt;br /&gt;
&lt;br /&gt;
A SHA-1 checksum, or Secure Hash Algorithm 1 checksum, is a fixed-size output (160 bits) generated from input data to uniquely identify and verify the integrity of files or documents. In BioCompute Objects (BCOs), it serves to ensure the unchanged state of computational workflows by comparing calculated and original checksums. This allows for accuracy in viewing and downloading BCOs.  &lt;br /&gt;
&lt;br /&gt;
9.     '''How do I sign in with an ORCID/What is an ORCID?''' &lt;br /&gt;
&lt;br /&gt;
[https://orcid.org/ ORCID] stands for Open Researcher and Contributor ID, and is a free, unique identifier assigned to researchers, providing a standardized way to link researchers to their scholarly activities. To sign in with your ORCID,  create an account at: https://orcid.org/. Using the credentials associated with your ORCID account you can log in to view and edit BCOs.  &lt;br /&gt;
&lt;br /&gt;
== Pipeline Questions ==&lt;br /&gt;
&lt;br /&gt;
1.    '''Do pipeline steps have to represent sequentially run steps? How can you represent steps also run in parallel?'''&lt;br /&gt;
&lt;br /&gt;
The standard does not mandate any particular numbering schema, but it’s best practice to pick the most logically intuitive numbering system. For example, a user may run a somatic SNV profiling step at the same time as a structural CNV analysis. So if in the example I mentioned, the alignment is step #2, then you might (arbitrarily) call the SNV profiling step #3, and the CNV analysis step #4. The fact that they pull from the output of the same step (#2) can easily be detected programmatically and represented in whatever way is suitable (e.g. graphically).&lt;br /&gt;
&lt;br /&gt;
2.    '''What is the nf-core plugin and how can I test it?'''&lt;br /&gt;
&lt;br /&gt;
The nf-core plugin, designed to facilitate Nextflow workflows, is now available for testing. To enable the BCO (BioCompute Object) format within the plugin, follow these instructions:&lt;br /&gt;
&lt;br /&gt;
* Ensure you have the latest version of the plugin installed.&lt;br /&gt;
&lt;br /&gt;
* Add the following code snippets to your Nextflow configuration file:&lt;br /&gt;
&lt;br /&gt;
plugins {&lt;br /&gt;
&lt;br /&gt;
    id 'nf-prov'&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
prov.enabled = true&lt;br /&gt;
&lt;br /&gt;
prov {&lt;br /&gt;
&lt;br /&gt;
    formats {&lt;br /&gt;
&lt;br /&gt;
        bco {&lt;br /&gt;
&lt;br /&gt;
            file = 'bco.json'&lt;br /&gt;
&lt;br /&gt;
            overwrite = true&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
These settings will enable the BCO format and specify the output file as &amp;quot;bco.json&amp;quot;. Ensure you include these snippets in your configuration file to activate the BCO format.&lt;br /&gt;
&lt;br /&gt;
For any questions related to Nextflow environment, please ask [https://github.com/nextflow-io/nf-prov/issues here]&lt;br /&gt;
&lt;br /&gt;
== Inputs and Outputs ==&lt;br /&gt;
&lt;br /&gt;
1.    '''What is the relationship and difference between input_list in description_domain and I/O Domain? Does input list in I/O domain contain all the input files of all the pipeline steps?'''&lt;br /&gt;
&lt;br /&gt;
Yes. The Input Domain is for global inputs. The input_list/output_list in the pipeline_steps is specific to individual steps and is used to trace data flow if granular detail is needed. If not needed, a user can simply look at the IO domain for the overall view of the pipeline inputs.&lt;br /&gt;
&lt;br /&gt;
2.   '''What is the relationship and difference between output_list in description_domain and I/O Domain? Does output list in I/O domain contain all the output files of all the pipeline steps?'''&lt;br /&gt;
&lt;br /&gt;
The Output Domain is for global outputs. The input_list/output_list in the pipeline_steps is specific to individual steps and is used to trace data flow if granular detail is needed. If not needed, a user can simply look at the IO domain for the overall view of the pipeline outputs.&lt;br /&gt;
&lt;br /&gt;
3.   '''There is an access_time property for uri, which is referenced by input_list, output_list, input_subdomain, and output_subdomain. What does access_time mean for output files? Aren’t output files generated by pipeline steps?'''&lt;br /&gt;
&lt;br /&gt;
Yes they are, the timestamp is used for creation in those cases.&lt;br /&gt;
&lt;br /&gt;
4.    '''Can a script from the execution domain also be considered an input?'''&lt;br /&gt;
&lt;br /&gt;
This is not usually the case, but it is possible for the script to be assessed as an input if it is used in the workflow to bring about an output.&lt;br /&gt;
&lt;br /&gt;
== Extensions ==&lt;br /&gt;
&lt;br /&gt;
1.    '''What is the role of extension_domain? How does it relate to other domains? Is it required in some pipeline steps? Or does it affect the execution? Or something else?'''&lt;br /&gt;
&lt;br /&gt;
Extension Domain is never required, it is always optional. It is a user-defined space for capturing anything not already captured in the base BCO. To use it, one generates an extension schema (referenced in the extension_schema), and the associated fields within the BCO. For example, if a user wants to include a specialized ontology with definitions, it can be added here. It’s meant to capture anything idiosyncratic to that workflow not already captured in the standard and is very flexible.&lt;br /&gt;
    &lt;br /&gt;
2.    '''How can BCOs be used for knowledgebases?'''&lt;br /&gt;
&lt;br /&gt;
Using BioCompute’s pre-defined fields and standards, knowledgebases can generate a BioCompute Object (BCO) to document the metadata, quality control, and integration pipelines developed for different workflows. BCOs can be used to document each release. The structured data in a BCO makes it very easy to identify changes between releases (including changes to the curation/data processing pipeline, attribution to curators, or datasets processed), or revert to previous releases.&lt;br /&gt;
&lt;br /&gt;
BCOs can be generated via a user-friendly instance of a BCO editor and can be maintained and shared through versioned, stable IDs stored under a single domain of that knowledgebase. BCOs not only provide complete transparency to their data submitters (authors, curators, other databases, etc.), collaborators, and users but also provide an efficient mechanism to reproduce the complete workflow through the information stored in different domains (such as description, execution, io, error, etc.) in the machine and human-readable formats.&lt;br /&gt;
&lt;br /&gt;
The most common way of adapting BCOs for use in knowledgebases is by leveraging the Extension Domain. In this example, the Extension Domain is used for calling fields based on column headers. Note that the Extension Domain identifies its own schema, which defines the column headers and identifies them as required where appropriate. Because the JSON format of a BCO is human and machine-readable (and can be further adapted for any manner of display or editing through a user interface), BCOs are amendable to either manual or automatic curation processes, such as the curation process that populates those fields in the above example.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
&lt;br /&gt;
1.    '''What is the difference between software_prerequisites in execution_domain and prerequisites in the description_domain? Is the former global, while the latter only applies to one specific pipeline step?'''&lt;br /&gt;
&lt;br /&gt;
Correct, Execution Domain is for anything related to the environment in which the pipeline was executed, and the Description Domain is specific to the software in those steps. So if I’ve written a shell script to run the pipeline, and in one step it includes myScript.py to comb through results and pick out elements of interest, myScript.py might be an Execution Domain prerequisite, and any packages or dependencies called from within the script are Description Domain level prerequisites. Alternatively, if I’m using the HIVE platform, any libraries needed to run HIVE are Execution Domain level.&lt;br /&gt;
&lt;br /&gt;
== BCO Scoring System ==&lt;br /&gt;
&lt;br /&gt;
1.    '''How is the score calculated?'''&lt;br /&gt;
&lt;br /&gt;
The score is computed based on a few key factors:&lt;br /&gt;
&lt;br /&gt;
* '''Usability Domain''': The length of the ''usability_domain'' field contributed to the base score&lt;br /&gt;
* '''Field Length Modifier''': A multiplier (1.2) is applied to the base score to account for field length&lt;br /&gt;
* '''Error Domain''': If the ''error_domain'' exist and is inserted correctly, 5 points are added&lt;br /&gt;
* '''Parametric Objects''': A multiplier (1.1) is applied to the score for each parametric object in the ''parametric_objects'' list&lt;br /&gt;
* '''Reviewer Objects''': Up to 5 points are added, one for each correct ''reviewer_object''&lt;br /&gt;
&lt;br /&gt;
2.   '''What happens if the ''usability_domain'' is missing?'''&lt;br /&gt;
&lt;br /&gt;
If the ''usability_domain'' or other required fields are missing the BCO score is immediately set to 0, and the function returns the BCO instance without further calculations.&lt;br /&gt;
&lt;br /&gt;
3. '''What is the purpose of the ''bco_score'' function'''&lt;br /&gt;
&lt;br /&gt;
The ''bco_score'' function calculates and assigns a unique score to each BioCompute Object (BCO) based on specific criteria in its contents. The score is influenced by the presence of characteristics of certain fields like the ''usabiliy_domain'', ''error_domain'', ''parametric_objects'', and ''reviewer_objects''.&lt;br /&gt;
&lt;br /&gt;
4. '''What is the purpose of the ''field_length_modifier'' and ''parametric_object_multiplier''?'''&lt;br /&gt;
&lt;br /&gt;
* ''field_length_modifier'' (1.2): This modifier adjusts the base score according to the length of the usability_domain field.&lt;br /&gt;
* ''parametric_object_multiplier'' (1.1): This multiplier increases the score based on the number of parametric objects present in the BCO, reflecting the complexity of the object.&lt;br /&gt;
&lt;br /&gt;
5. '''What is the expected output of the bco_score function?'''&lt;br /&gt;
&lt;br /&gt;
The ''bco_score'' function modifies the BCO instance by assigning a ''score'' attribute based on the criteria mentioned above, the updated BCO instance, with the score added, is then returned following the saving of the BCO draft.&lt;br /&gt;
&lt;br /&gt;
6. '''How does the reviewer count affect the score?'''&lt;br /&gt;
&lt;br /&gt;
For each ''reviewer_object'' present in the BCO (up to maximum of 5 reviewers), the score increases by 1 point. This incentivizes the inclusion of peer review and validation within the object.&lt;br /&gt;
&lt;br /&gt;
7. '''What is the significance of ''entAliases'' in the ''convert_to_ldh'' function?'''&lt;br /&gt;
&lt;br /&gt;
The ''entAliases'' field is a list that stores multiple identifiers for the BioCompute Object. These include the ''object_id,'' its full URL (entIri), and its entity type (entType), ensuring that the object can be referenced in different contexts.&lt;br /&gt;
&lt;br /&gt;
8. '''How and Where does the score appear on the BCO Builder?'''&lt;br /&gt;
&lt;br /&gt;
The score is calculated by the ''bco_score'' function and is displayed within the BioCompute Object (BCO) metadata section of the BCO Builder interface, following the saving of a BCO draft. &lt;br /&gt;
&lt;br /&gt;
== BCO for Knowledgebases ==&lt;br /&gt;
&lt;br /&gt;
1.    '''Can BCOs be used for curating databases?'''&lt;br /&gt;
&lt;br /&gt;
Yes. BCOs have been used in this capacity, such as in the [https://data.argosdb.org/ FDA’s ARGOS database of infectious diseases] and the [https://data.glygen.org/ GlyGen database of glycosylation sites]. The following recommendations are compiled from these use cases. Although these recommendations are built from practical experience, they may not address the needs of every database. Users are free to make modifications at their own discretion.&lt;br /&gt;
&lt;br /&gt;
Using BioCompute’s pre-defined fields and standards, knowledgebases can generate a BioCompute Object (BCO) to document the metadata, quality control, and integration pipelines developed for different workflows. BCOs can be used to document each release. The structured data in a BCO makes it very easy to identify changes between releases (including changes to the curation/data processing pipeline, attribution to curators, or datasets processed), or revert to previous releases.&lt;br /&gt;
&lt;br /&gt;
BCOs can be generated via a user-friendly instance of a BCO editor and can be maintained and shared through versioned, stable IDs stored under a single domain of that knowledgebase. BCOs not only provide complete transparency to their data submitters (authors, curators, other databases, etc.), collaborators, and users but also provide an efficient mechanism to reproduce the complete workflow through the information stored in different domains (such as description, execution, io, error, etc.) in the machine and human-readable formats.&lt;br /&gt;
&lt;br /&gt;
The most common way of adapting BCOs for use in knowledgebases is by leveraging the Extension Domain. In this example, the Extension Domain is used for calling fields based on column headers. Note that the Extension Domain identifies its own schema, which defines the column headers and identifies them as required where appropriate. Because the JSON format of a BCO is human and machine-readable (and can be further adapted for any manner of display or editing through a user interface), BCOs are amendable to either manual or automatic curation processes, such as the curation process that populates those fields in the above example.&lt;br /&gt;
&lt;br /&gt;
== Saving and Publishing a BCO ==&lt;br /&gt;
&lt;br /&gt;
1.    '''Why is my BCO not saved after clicking '''SAVE'''?'''&lt;br /&gt;
&lt;br /&gt;
The '''SAVE''' only saves the entry on the website but it's not saving to the server. For a new draft, after editing, go to '''Tools''', first select a BCODB, then click on '''GET PREFIXES''' to choose a prefix, and lastly, click on '''SAVE PREFIX'''. For an existing draft, to save properly, click on '''SAVE''' first and then under '''Tools''', select '''UPDATE DRAFT'''.&lt;br /&gt;
&lt;br /&gt;
2. '''What are the minimal requirements for validation and publishing with the BioCompute Objects (BCO) standard?'''&lt;br /&gt;
&lt;br /&gt;
A submission simply needs to validate against the [https://opensource.ieee.org/2791-object/ieee-2791-schema/-/raw/master/2791object.json?ref_type=heads schema]. The minimal requirements include inputs, outputs, data transformation steps, environment details, person(s) who wrote or executed the pipeline, and a plain text description of the pipeline and its objectives.&lt;br /&gt;
&lt;br /&gt;
== BCO Validation and Error messages ==&lt;br /&gt;
&lt;br /&gt;
The BCO Portal uses a JSON validator to validate the BCOs, and because of the error messages returned may be a little confusing. Below are some common validation results and an explanation of what they mean and how to address them.&lt;br /&gt;
&lt;br /&gt;
1.     '''&amp;quot;[description_domain][pipeline_steps][0][step_number]&amp;quot;: &amp;quot;'1' is not of type 'integer'&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
The '''step_number''' in the BCO JSON needs to be an INTEGER. &lt;br /&gt;
&lt;br /&gt;
This means it can not be in quotes like this:&lt;br /&gt;
    ''' &amp;quot;step_number&amp;quot;: &amp;quot;1&amp;quot;,'''&lt;br /&gt;
Instead, it must be represented like this:&lt;br /&gt;
    ''' &amp;quot;step_number&amp;quot;: 1,'''&lt;br /&gt;
&lt;br /&gt;
You may not be able to see this difference in the '''COLOR-CODED''' view, and will have to look in the '''TREE VIEW JSON''' or '''RAW JSON VIEW'''.&lt;br /&gt;
&lt;br /&gt;
== Submitting BCOs to FDA ==&lt;br /&gt;
&lt;br /&gt;
=== Submission Process and Requirements ===&lt;br /&gt;
# '''How should I submit a BCO with a regulatory submission?'''  Both JSON (the original format of BCO) and plain text (&amp;quot;.txt&amp;quot;) documents are accepted by the FDA. BCO files can be included as a JSON file under Module 5.3.5.4 and submitted to the FDA as supporting documents in the Electronic Common Technical Document (eCTD) for the submission of bioinformatics workflow data to both CDER (Center for Drug Evaluation and Research) and CBER (Center for Biologics Evaluation and Research) for regulatory reviews. Human Foods Program (HFP; formerly known as the Center for Food Safety and Nutrition, or CFSAN) also accepts BCOs. Please check with your reviewer or review division for logistical details to submit a BCO.  BCOs can contain links to files that are submitted via hard drive. File sharing via the FDA-HIVE portal is not currently available.&lt;br /&gt;
# '''What is the minimum content requirement for a Sample eCTD Submission to CDER?''' Module 1 and Module 5 (Module 5.3.5.4 especially where the BCO is located) are required. A cover letter (states the purpose of the submission and the intentional submission center) and FDA Form (1571 for IND and 356h for NDA/BLA/ANDA), and BCO file.&lt;br /&gt;
# '''Can I submit a BCO without data files?''' Yes, but if the sponsor is submitting a BCO without the data they should seek agreement with the review division prior to submission.&lt;br /&gt;
# '''Which center should the eCTD (containing BCO file(s)) be submitted to?''' Both CDER and CBER centers accept eCTD submissions and they both have the ability to review the submission files if requested.&lt;br /&gt;
# '''How to submit eCTD?''' eCTD (which contains BCO file) should be submitted via Test Electronic Submission Gateway (ESG) to both CBER and CDER. In order for both centers to receive the submission, sponsors would need to make a submission to each center via the ESG Gateway.&lt;br /&gt;
# '''Where should BCO files be placed within the eCTD?'''  We recommend including BCO files as part of a study, referenced under a Study Tagging File, under Module 5.3.5.4 (Other Study Reports).&lt;br /&gt;
&lt;br /&gt;
=== Dataset and File Submission Details ===&lt;br /&gt;
# '''How to include or indicate dataset information in the BCO and/or ESG submission?''' There are a few options to include the dataset information in the BCO or ESG submission: (Note: it is mandatory to include dataset information in the Cover Letter, however, if you would like to add more clarity, you may choose from the option 2-4 listed below)&lt;br /&gt;
## Include in the dataset information in the Cover Letter: State how the datasets are submitted (via ESG or hard drive), the tracking number, estimated delivery date. This option is mandatory for BCO submission to the FDA to help reviewers to track down related datasets.&lt;br /&gt;
##Globally, suggest to include datasets information in the Usability Domain and refer to the root of the hard drive, see example below:[[File:Screenshot 2024-11-11 at 16.14.20.png|center|thumb|591x591px]]&lt;br /&gt;
##If you prefer to mention the file structure and names in each step, then the datasets information can be included in description domain, see example below:[[File:Screenshot 2024-11-11 at 16.14.05.png|center|thumb|620x620px]]&lt;br /&gt;
##If you would like to use the file structure and names from an existing schema, you may enter the schema URL in the extension domain, using the Figure 1 from this [https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1000424 paper] as an example, the JSON schema defines the file structure and names&lt;br /&gt;
  &amp;quot;$schema&amp;quot;: &amp;quot;http://json-schema.org/draft-07/schema#&amp;quot;,&lt;br /&gt;
  &amp;quot;$id&amp;quot;: &amp;quot;http://json-schema.org/draft-07/schema#&amp;quot;,&lt;br /&gt;
  &amp;quot;title&amp;quot;: &amp;quot;Computational Biology Project Structure&amp;quot;,&lt;br /&gt;
  &amp;quot;type&amp;quot;: &amp;quot;object&amp;quot;,&lt;br /&gt;
  &amp;quot;properties&amp;quot;: {&lt;br /&gt;
    &amp;quot;level 1&amp;quot;: {&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;object&amp;quot;,&lt;br /&gt;
      &amp;quot;properties&amp;quot;: {&lt;br /&gt;
        &amp;quot;msms&amp;quot;: {&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
          &amp;quot;description&amp;quot;: &amp;quot;Main directory for project data and scripts.&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        &amp;quot;level 2&amp;quot;: {&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;object&amp;quot;,&lt;br /&gt;
          &amp;quot;properties&amp;quot;: {&lt;br /&gt;
            &amp;quot;doc&amp;quot;: {&lt;br /&gt;
              &amp;quot;type&amp;quot;: &amp;quot;object&amp;quot;,&lt;br /&gt;
              &amp;quot;description&amp;quot;: &amp;quot;Project documentation&amp;quot;,&lt;br /&gt;
              &amp;quot;properties&amp;quot;: {&lt;br /&gt;
                &amp;quot;paper&amp;quot;: {&lt;br /&gt;
                  &amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
                  &amp;quot;description&amp;quot;: &amp;quot;Documents related to the project.&amp;quot;&lt;br /&gt;
                }&lt;br /&gt;
              }&lt;br /&gt;
            },&lt;br /&gt;
            &amp;quot;data&amp;quot;: {&lt;br /&gt;
              &amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
              &amp;quot;description&amp;quot;: &amp;quot;Directory for data files.&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            &amp;quot;src&amp;quot;: {&lt;br /&gt;
              &amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
              &amp;quot;description&amp;quot;: &amp;quot;Source code directory.&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            &amp;quot;bin&amp;quot;: {&lt;br /&gt;
              &amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
              &amp;quot;description&amp;quot;: &amp;quot;Executable files.&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            &amp;quot;results&amp;quot;: {&lt;br /&gt;
              &amp;quot;type&amp;quot;: &amp;quot;object&amp;quot;,&lt;br /&gt;
              &amp;quot;description&amp;quot;: &amp;quot;Results directory with analysis outputs.&amp;quot;,&lt;br /&gt;
              &amp;quot;properties&amp;quot;: {&lt;br /&gt;
                &amp;quot;2009_01_15&amp;quot;: {&lt;br /&gt;
                  &amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
                  &amp;quot;description&amp;quot;: &amp;quot;Data from analysis on 2009-01-15.&amp;quot;&lt;br /&gt;
                },&lt;br /&gt;
                &amp;quot;2009_01_23&amp;quot;: {&lt;br /&gt;
                  &amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
                  &amp;quot;description&amp;quot;: &amp;quot;Data from analysis on 2009-01-23.&amp;quot;&lt;br /&gt;
                }&lt;br /&gt;
              }&lt;br /&gt;
            }&lt;br /&gt;
          }&lt;br /&gt;
        }&lt;br /&gt;
      }&lt;br /&gt;
    },&lt;br /&gt;
    &amp;quot;level 3&amp;quot;: {&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;object&amp;quot;,&lt;br /&gt;
      &amp;quot;properties&amp;quot;: {&lt;br /&gt;
        &amp;quot;2009_01_14&amp;quot;: {&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;object&amp;quot;,&lt;br /&gt;
          &amp;quot;description&amp;quot;: &amp;quot;Initial analysis on 2009-01-14.&amp;quot;,&lt;br /&gt;
          &amp;quot;properties&amp;quot;: {&lt;br /&gt;
            &amp;quot;yeast&amp;quot;: {&lt;br /&gt;
              &amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
              &amp;quot;description&amp;quot;: &amp;quot;Yeast dataset.&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            &amp;quot;worm&amp;quot;: {&lt;br /&gt;
              &amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
              &amp;quot;description&amp;quot;: &amp;quot;Worm dataset.&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
          }&lt;br /&gt;
        },&lt;br /&gt;
        &amp;quot;2009_01_15&amp;quot;: {&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;object&amp;quot;,&lt;br /&gt;
          &amp;quot;description&amp;quot;: &amp;quot;Follow-up analysis and summary on 2009-01-15.&amp;quot;,&lt;br /&gt;
          &amp;quot;properties&amp;quot;: {&lt;br /&gt;
            &amp;quot;split1&amp;quot;: {&lt;br /&gt;
              &amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
              &amp;quot;description&amp;quot;: &amp;quot;First data split.&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            &amp;quot;split2&amp;quot;: {&lt;br /&gt;
              &amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
              &amp;quot;description&amp;quot;: &amp;quot;Second data split.&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            &amp;quot;split3&amp;quot;: {&lt;br /&gt;
              &amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
              &amp;quot;description&amp;quot;: &amp;quot;Third data split.&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
          }&lt;br /&gt;
        }&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
# '''How to submit large I/O files to the FDA?'''  Please refer to the [https://www.fda.gov/industry/create-esg-account/frequently-asked-questions#_Q19 FDA site] for the definition of large I/O files. Large I/O files need to be sent on a hard drive to CBER, which FDA-HIVE is nested under CBER. All data will be uploaded/downloaded to HIVE. CDER reviewers will use the CBER HIVE to receive and review this type of data. Please use the following address for the hard drive: &amp;lt;u&amp;gt;U.S. Food and Drug Administration&amp;lt;/u&amp;gt; &amp;lt;u&amp;gt;Center for Biologics Evaluation and Research&amp;lt;/u&amp;gt;  &amp;lt;u&amp;gt;Document Control Center&amp;lt;/u&amp;gt;  &amp;lt;u&amp;gt;10903 New Hampshire Avenue&amp;lt;/u&amp;gt;  &amp;lt;u&amp;gt;WO71, G112&amp;lt;/u&amp;gt;  &amp;lt;u&amp;gt;Silver Spring, MD 20993-0002.&amp;lt;/u&amp;gt; Also, please add information of the dataset submission plan or details in the Cover Letter so that the reviewer knows it is coming and when to expect it.&lt;br /&gt;
#'''Are there any specific notes or memos that should be included with the hard drive?'''  Yes, please ensure that the application number is attached to the hard drive for easier processing and identification. In addition, provide the shipping company name, transit number and expected delivery date when available to DCC (DCCEDR@fda.hhs.gov).&lt;br /&gt;
# '''Can I submit BCOs on a portable hard drive if requested by the FDA?'''  BCOs can also be stored on a portable&amp;lt;ins&amp;gt; &amp;lt;/ins&amp;gt;hard drive and referenced in the eCTD. This allows for easy access and verification of the BCO files during the review process'''.''' The hard drive submitted to HIVE (CBER), CDER would also have access to the data.&lt;br /&gt;
# '''How much data needs to be submitted?'''  There is no minimum requirement; it depends on the goal of the submission and the scope of the submission.&lt;br /&gt;
# '''Is the software used required for submission?''' Software used is not required to be submitted. However, some divisions would want software details; this depends very much on where the submission goes.&lt;br /&gt;
&lt;br /&gt;
=== Tools and Technical Details ===&lt;br /&gt;
# '''What is Electronic Submissions Gateway (ESG)?'''  The Electronic Submissions Gateway (ESG) is the FDA's primary way to receive electronic regulatory submissions. &lt;br /&gt;
# '''What materials are required to register for an ESG account?'''  FDA ESG provides two methods, WebTrader and AS2 for making submissions to the FDA.  WebTrader is a web-based user interface to send documents and receive receipts and acknowledgments from the FDA with minimal technical expertise. To set up WebTrader, several preparatory steps are needed. First, prepare an electronic Letter of Non-Repudiation Agreement; Second, generate or obtain a free personal digital certificate. These two documents are needed during the account registration step. Other optional preparatory steps include preparing a guidance-compliant test submission and a load test submission. For more details, review the formal FDA documentation [https://www.fda.gov/industry/create-esg-account/setting-webtrader-account-checklist here]. To register the WebTrader account, go to the ESG Account Management Portal at  '''''[https://esgportal.fda.gov/ https://esgportal.fd]&amp;lt;nowiki/&amp;gt;[https://esgportal.fda.gov/ a.go][https://esgportal.fda.gov/ v/].''''' Then select &amp;quot;New Account Registration&amp;quot; and follow the '''''&amp;lt;nowiki/&amp;gt;'''''prompts. Please refer to the [https://www.fda.gov/industry/about-esg/esg-account-management-portal-user-guide ESG Account Management Portal User Guide] for instructions. After account registration, users need to set up the local machine. Download the required WebTrader Client Installer (Note: only compatible with Windows machines).  AS2 (System-to-System) allows industry partners to have the option to access the Gateway via system-to-system communication. It provides an automated connection to the FDA for submissions, receipts, and acknowledgments, generally used by sponsors that have a high volume of submissions. However, this system requires AS2-compliant software and technical expertise. For more information regarding AS2, refer to the [https://www.fda.gov/industry/create-esg-account/setting-as2-account-checklist Setting up an AS2 Account Checklist].&lt;br /&gt;
# '''How much data can ESG (Electronic Submission Gateway) handle?'''  The maximum file size for a single file (non-folder) is 100 GB of uncompressed data. The maximum file size for a multi-file (folder) is 100 GB of uncompressed data that contains single files (non-folder) no larger than 6 GB of uncompressed data. ESG recommends that you send an email to [[Mailto:ESGHelpDesk@fda.hhs.gov|ESGHelpDesk@fda.hhs.gov]] for all submissions over 10 GB of uncompressed data. The FDA recommends that submissions greater than 15 GB and less than 25 GB in size be sent overnight starting at 5PM EST to ensure receipt by the targeted FDA Center during the next business day. For large datasets, they need to be submitted via hard drive to CBER, for more information, refer to the FAQ above.&lt;br /&gt;
# '''For more ESG-related questions, refer to the official FDA ESG FAQ site [https://www.fda.gov/industry/create-esg-account/frequently-asked-questions#_Q19 here]. If you have questions for CBER, please contact CBER ESUB at esubprep@fda.hhs.goc; if the questions are for CDER, please contact CDER ESUB at esub@fda.hhs.gov; if general ESG-related questions, please contact ESG Help Desk at esghelpdesk@fda.hhs.gov.'''&lt;br /&gt;
&lt;br /&gt;
=== Regulatory Applications and Use Cases ===&lt;br /&gt;
# '''For which types of regulatory submissions can BCOs be used?'''  BCOs can be applied to the following types of regulatory submission:&lt;br /&gt;
#* Biologics license applications (BLAs);&lt;br /&gt;
#* Investigational new drug applications (INDs);&lt;br /&gt;
#* New drug applications (NDAs);&lt;br /&gt;
#* Abbreviated new drug applications (ANDAs).&lt;br /&gt;
&lt;br /&gt;
== Archived Pilot Project Related FAQs ==&lt;br /&gt;
&lt;br /&gt;
=== BCO Test Submission ===&lt;br /&gt;
&lt;br /&gt;
# '''How to submit eCTD?''' eCTD portion of the pilot (which contains BCO file) should be submitted via Test Electronic Submission Gateway (ESG) to both CBER and CDER. In order for both centers to receive the submission, sponsors would need to make a submission to each center via the ESG Test Gateway.&lt;br /&gt;
## '''CDER:''' Participants should contact [[Mailto:ESUB-Testing@fda.hhs.gov|ESUB-Testing@fda.hhs.gov]] to request a sample application number to submit a BCO pilot submission. The subject line of the email should be “BCO Pilot”. Once the submission is sent through the ESG Test Gateway, the submitter will receive two gateway acknowledgements. The submitter will need to forward the second gateway acknowledgment which contains the “COR id” number to the ESUB-Testing team so they can locate the submission and notify the FDA Pilot point of contact.&lt;br /&gt;
## '''CBER''': Participants should contact [[Mailto:ESUBPREP@fda.hhs.gov|ESUBPREP@fda.hhs.gov]] to request a sample application number to submit a BCO pilot submission. The ESUBPREP team should also be notified when the submission is inbound.  The subject line of any email related to the pilot should contain “BCO Pilot.” Once the submission is sent through the ESG Test Gateway, the submitter will receive up to three acknowledgments.  The submitter will need to forward the second gateway notification acknowledgment, containing the Core ID number, to the ESUBPREP team (also referencing “BCO Pilot” in the subject line) so the submission can be located and shared with the FDA Pilot point of contact.  Please note that if a third acknowledgment is generated containing a rejection notification, it should be ignored by the submitter.&lt;br /&gt;
&lt;br /&gt;
# '''What is Electronic Submission Gateway (ESG)?''' The Electronic Submissions Gateway (ESG) is the FDA's primary way to receive electronic regulatory submissions. The Test ESG is in a pre-production environment and will be used for this pilot.&lt;br /&gt;
# '''Are intermediate datasets/files required for the purpose of the pilot project?''' Currently, the intermediate files are not required to be submitted at the initial phase of the pilot project.&lt;br /&gt;
&lt;br /&gt;
=== Communication and Support ===&lt;br /&gt;
# '''How should sponsors contact the FDA regarding BioCompute Object submissions?'''   We do have points of contact at both CDER and CBER centers. If you have general submission and review questions regarding BCO submissions, please contact [[Mailto:cber-edata@fda.hhs.gov|cber-edata@fda.hhs.gov]] if submitted to CBER; [[Mailto:edata@fda.hhs.gov|edata@fda.hhs.gov]] for CDER.&lt;br /&gt;
# '''What should sponsors do if they have general questions about BioCompute Object submissions but do not have a submission in-house?'''   If sponsors have general questions about BioCompute Object submissions and do not currently have a submission in-house, they can reach out to the email address industry.biologics@fda.hhs.gov managed by OCOD (Office of Computational and Data Sciences). The request will be triaged and directed to the appropriate individuals to provide assistance and address inquiries.&lt;br /&gt;
&lt;br /&gt;
==Publications==&lt;br /&gt;
To explore our publications, please visit [https://hive.biochemistry.gwu.edu/publications this link].&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BCO_Resources&amp;diff=1122</id>
		<title>BCO Resources</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BCO_Resources&amp;diff=1122"/>
		<updated>2025-06-24T21:10:15Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ggw_row2&amp;quot; style=&amp;quot;display: flex; flex-flow: row wrap; justify-content: space-between; padding: 0; margin: 0 -5px 0 -5px;&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;flex: 1; margin: 5px; min-width: 210px; border: 1px solid #CCC;	padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba(0,0,0,0.1); background: #f5faff;&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h3&amp;gt;[https://biocomputeobject.org/api/docs/ BCODB API]&amp;lt;/h3&amp;gt;[[File:Swagger.png|frameless|211x211px]]&amp;lt;div style=&amp;quot;border-top: 1px solid #CCC; padding-top: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
Explore the BioCompute database RESTful APIs, generated by Swagger.&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;div style=&amp;quot;flex: 1; margin: 5px; min-width: 210px; border: 1px solid #CCC;	padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba(0,0,0,0.1); background: #f5faff;&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h3&amp;gt;[https://github.com/nextflow-io/nf-prov Nextflow]&amp;lt;/h3&amp;gt;[[File:Nextflow.png|frameless|121x121px]]&amp;lt;div style=&amp;quot;border-top: 1px solid #CCC; padding-top: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
Automatically generate BCO from Nextflow pipelines with provenance information&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;div style=&amp;quot;flex: 1; margin: 5px; min-width: 210px; border: 1px solid #CCC;	padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba(0,0,0,0.1); background: #f5faff;&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h3&amp;gt;[https://github.com/NovoNordisk-OpenSource/whirl Whirl]&amp;lt;/h3&amp;gt;[[File:Octocat.png|frameless|121x121px]]&amp;lt;div style=&amp;quot;border-top: 1px solid #CCC; padding-top: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
Documentation tool from Novo Nordisk with support for BCOs&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex: 1; margin: 5px; min-width: 210px; border: 1px solid #CCC;	padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba(0,0,0,0.1); background: #f5faff;&amp;quot;&amp;gt;&lt;br /&gt;
=== [https://hive.biochemistry.gwu.edu/dna.cgi?cmd=main HIVE Platform] ===&lt;br /&gt;
[[File:Hive.png|frameless|155x155px]]&amp;lt;div style=&amp;quot;border-top: 1px solid #CCC; padding-top: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
The High-throughput Integrated Virtual Environment (HIVE) for genome analysis has platform specific tools for generating BioCompute Objects from workflows.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;ggw_row2&amp;quot; style=&amp;quot;display: flex; flex-flow: row wrap; justify-content: space-between; padding: 0; margin: 0 -5px 0 -5px;&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;flex: 1; margin: 5px; min-width: 210px; border: 1px solid #CCC;	padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba(0,0,0,0.1); background: #f5faff;&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h3&amp;gt;[https://github.com/biocompute-objects/bcotool/tree/1.1.0 BCO-TOOL]&amp;lt;/h3&amp;gt;[[File:Octocat.png|frameless|96x96px]]&amp;lt;div style=&amp;quot;border-top: 1px solid #CCC; padding-top: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
Command line tool for to create, validate, and export BioCompute Objects.&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;div style=&amp;quot;flex: 1; margin: 5px; min-width: 210px; border: 1px solid #CCC;	padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba(0,0,0,0.1); background: #f5faff;&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h3&amp;gt;[https://cran.r-project.org/web/packages/biocompute/index.html CRAN BioCompute Tool]&amp;lt;/h3&amp;gt;[[File:Cran.png|frameless|71x71px]]&amp;lt;div style=&amp;quot;border-top: 1px solid #CCC; padding-top: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
Tools to create, validate, and export BioCompute Objects in R. Users can encode information in data frames, and compose BioCompute Objects from the domains defined by the standard.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex: 1; margin: 5px; min-width: 210px; border: 1px solid #CCC;	padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba(0,0,0,0.1); background: #f5faff;&amp;quot;&amp;gt;&lt;br /&gt;
=== [https://hub.docker.com/r/dnanexus/bconexus BCO Nexus] ===&lt;br /&gt;
[[File:Dnanexus.png|frameless|60x60px]]&amp;lt;div style=&amp;quot;border-top: 1px solid #CCC; padding-top: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
BCOnexus developed by DNAnexus, as a platform-free Docker tool for quick BCO evaluation.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex: 1; margin: 5px; min-width: 210px; border: 1px solid #CCC;	padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba(0,0,0,0.1); background: #f5faff;&amp;quot;&amp;gt;&lt;br /&gt;
=== Galaxy Platform ===&lt;br /&gt;
[[File:Galaxy.png|frameless|162x162px]]&amp;lt;div style=&amp;quot;border-top: 1px solid #CCC; padding-top: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
The Galaxy BCO API Extension enables Galaxy users to the export of Galaxy “workflow invocations” (i.e. realizations of a computational pipeline) in BCO format.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex: 1; margin: 5px; min-width: 210px; border: 1px solid #CCC;	padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba(0,0,0,0.1); background: #f5faff;&amp;quot;&amp;gt;&lt;br /&gt;
=== [https://www.cancergenomicscloud.org/ Cancer Genomics Cloud Seven Bridges] ===&lt;br /&gt;
[[File:CGC v2.0.png|frameless|159x159px]]&amp;lt;div style=&amp;quot;border-top: 1px solid #CCC; padding-top: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
Tools to create, validate, and export BioCompute Objects in R. &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ggw_row3&amp;quot; style=&amp;quot;display: flex; flex-flow: row wrap; justify-content: space-between; padding: 0; margin: 0 -5px 0 -5px;&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;flex: 1; margin: 5px; min-width: 210px; border: 1px solid #CCC;	padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba(0,0,0,0.1); background: #f5faff;&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h3&amp;gt;[[File:Biocomputing.gif|frameless|42x42px]]BioCompute Citations&amp;lt;/h3&amp;gt;&lt;br /&gt;
        &amp;lt;div style=&amp;quot;border-top: 1px solid #CCC; padding-top: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
# Keeney JG, Gulzar N, Baker JB, Klempir O, Hannigan GD, Bitton DA, Maritz JM, King CHS 4th, Patel JA, Duncan P, Mazumder R.. Communicating computational workflows in a regulatory environment. Drug Discov Today. 2024 Mar;103884(3) [https://pubmed.ncbi.nlm.nih.gov/38219969/ PMID:38219969.]&lt;br /&gt;
# King CH, Keeney J, Guimera N, Das S, Weber M, Fochtman B, Walderhaug MO, Talwar S, Patel JA, Mazumder R, Donaldson EF. Communicating regulatory high-throughput sequencing data using BioCompute Objects. Drug Discov Today. 2022 Jan 22; [https://pubmed.ncbi.nlm.nih.gov/35077912/ PMID: 35077912].&lt;br /&gt;
# Stian Soiland-Reyes, Peter Sefton, Mercè Crosas, Leyla Jael Castro, Frederik Coppens, José M. Fernández, Daniel Garijo, Björn Grüning, Marco La Rosa, Simone Leo, Eoghan Ó Carragáin, Marc Portier, Ana Trisovic, RO-Crate Community, Paul Groth, Carole Goble. [https://doi.org/10.3233/DS-210053 Packaging research artefacts with RO-Crate]. Data Science, 2022&lt;br /&gt;
# Patel JA, Dean DA, King CH, Xiao N, Koc S, Minina E, Golikov A, Brooks P, Kahsay R, Navelkar R, Ray M, Roberson D, Armstrong C, Mazumder R, Keeney J. Bioinformatics tools developed to support BioCompute Objects. Database (Oxford).2021 March 31; [https://pubmed.ncbi.nlm.nih.gov/33784373/ PMID:33784373].&lt;br /&gt;
# Alterovitz G, Dean D A, Goble C, Crusoe M R, Soiland-Reyes S, Bell A, Hayes A, King, C H S, Taylor D, Johanson E, Thompson E E, Donaldson E, Morizono H, Tsang H S, Goecks J, Yao J, Almeida J S, Krampis K, Guo L, Walderhaug M, Walsh P, Kahsay R, Gottipati S, Bloom T, Lai Y, Simonyan V, Mazumder R. [https://doi.org/10.1371/journal.pbio.3000099 Enabling Precision Medicine via standard communication of HTS provenance, analysis, and results.] PLOS Biology; 16(12): e3000099.2018.&lt;br /&gt;
# Simonyan V, Goecks J, Mazumder R. BioCompute objects - a step towards evaluation and validation of bio-medical scientific computations. PDA J Pharm Sci Technol. 2017;71(2):136-146 [https://pubmed.ncbi.nlm.nih.gov/27974626/ PMID:27974626].&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=User:Rogelio5633&amp;diff=1090</id>
		<title>User:Rogelio5633</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=User:Rogelio5633&amp;diff=1090"/>
		<updated>2025-03-07T15:31:35Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=User:RhodaConnal&amp;diff=1089</id>
		<title>User:RhodaConnal</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=User:RhodaConnal&amp;diff=1089"/>
		<updated>2025-03-07T15:31:12Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=799</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=799"/>
		<updated>2024-05-17T13:49:40Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Conference Webinar */ Update salutations and discussion period titles.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Keeney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;&lt;br /&gt;
== &amp;lt;big&amp;gt;Conference Webinar&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;BioCompute Conference 2024 at FDA&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Presented by the BioCompute team with plenary address by CBER Director Dr. Peter Marks&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Published May 10, 2024&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Part 1: https://fda.zoomgov.com/rec/play/3Sdy2RUOnV7vhfE3FbcT_zjMgh60CxsBf5bawVk_5O6Dh3OkGGaX6x1kTNElXqRRRe-iC__QuqcyF3s.bOfSF4ygJb7JhQgb?canPlayFromShare=true&amp;amp;from=share_recording_detail&amp;amp;continueMode=true&amp;amp;componentName=rec-play&amp;amp;originRequestUrl=https%3A%2F%2Ffda.zoomgov.com%2Frec%2Fshare%2FHVDzqhtgev_jo-_fDfgO8rjvV4uH8_KtFz9l6XlChFOc-0E9WlfryBqvgvJCX7Ed.vOEBh65if8cmnEYl &lt;br /&gt;
&lt;br /&gt;
Part 2: https://fda.zoomgov.com/rec/play/3Sdy2RUOnV7vhfE3FbcT_zjMgh60CxsBf5bawVk_5O6Dh3OkGGaX6x1kTNElXqRRRe-iC__QuqcyF3s.bOfSF4ygJb7JhQgb?canPlayFromShare=true&amp;amp;from=share_recording_detail&amp;amp;continueMode=true&amp;amp;componentName=rec-play&amp;amp;originRequestUrl=https%3A%2F%2Ffda.zoomgov.com%2Frec%2Fshare%2FHVDzqhtgev_jo-_fDfgO8rjvV4uH8_KtFz9l6XlChFOc-0E9WlfryBqvgvJCX7Ed.vOEBh65if8cmnEYl&amp;amp;autoplay=true&amp;amp;startTime=1715371778000&lt;br /&gt;
&lt;br /&gt;
Part 1:&lt;br /&gt;
&lt;br /&gt;
* Intro - Dr. Keeney:  00:00-11:35&lt;br /&gt;
* Vision and Future of BioCompute - Dr. Mazumder  11:45 - 27:45&lt;br /&gt;
* FDA Alignment With The Vision of Biocompute - Dr. Peter Marks 28:48 - 40:25&lt;br /&gt;
* Biocompute Vision From an FDA-Industry Perspective - Dr. Vahan Simonyan 43:23 - 1:00:07&lt;br /&gt;
* A computational framework for end-to-end clinical omics analysis - Dr. Jun Luo 1:00:26 - 1:09:57&lt;br /&gt;
* Applications of Biocompute Objects For Viral Metagenomics Analysis - Dr. Julia Maritz 1:10:47 - 1:20:40&lt;br /&gt;
* Regulated Industry Discussion Panel 1: 1:21:23 - 1:41:10&lt;br /&gt;
* Biocompute Objects and Workflows - Dr. Mark Walderhaug 1:42:14 - 1:59:20&lt;br /&gt;
* Computational Reviews at CBER - Dr. Luis V Santanz-Quintero 1:59:40 - 2:12:08&lt;br /&gt;
* High Throughput Sequencing Data Challenges in FDA Regulatory Review - Dr. Eric Donaldson 2:12:23 - 2:29:44&lt;br /&gt;
* FDA Discussion Panel 2: 2:30:26 - 2:43:17&lt;br /&gt;
* AI and Data Science For Health and Research: Exploring NIH Strategies, Challenges, and Visions for the Future - Dr. Susan Gregurick -  2:43:43 - 3:00:20&lt;br /&gt;
* Biocompute Object Submissions to FDA - Ginny Hussong 3:02:32 - 3:09:27&lt;br /&gt;
* Extending BCO Specification into a Generic Metamodel For Computable Data - Guangzhi Sun - 3:15:17 - 3:29:39&lt;br /&gt;
* Functioning Biocompute Objects As AI Agents - Dr. Jonas S. Almeida 3:37:17 - 3:51:03&lt;br /&gt;
* DNAnexus: Democratizing access to BCOs with the BCOnexus Platform Free Editor - Dr. Sam Westreich 3:52:20 - 4:04:20&lt;br /&gt;
* Facilitating BCO Use From Standard to Best Practices: The Neoantigen Use Case - Dr. Dennis A. Dean 4:06:09 - 4:25:21&lt;br /&gt;
* BioCompute Portal, BioCompute Database, and User Database: Why So Many? - Charles Hadley King 4:28:52 - 4:46:28&lt;br /&gt;
* BCO Provenance Models and FAIR Computational Workflows - Stain Soiland-Reyes &amp;amp; Meznah Aloqalaa 4:50:00 - 5:05:18 &lt;br /&gt;
* Generating BCO’s For Nextflow Pipelines - Dr. Ben Sherman 5:10:51 - Cont. on Part 2&lt;br /&gt;
&lt;br /&gt;
Part 2:&lt;br /&gt;
&lt;br /&gt;
* Generating BCO’s For Nextflow Pipelines - Dr. Ben Sherman CONT. Prev - 00:03:13&lt;br /&gt;
* Large Language Models - Dr. Konstantinos Krampis 00:09:42 - 00:22:50&lt;br /&gt;
* Retrieval-Augmented Generation For BioCompute Object Creation - Sean Kim 00:24:04 - 00:38:20&lt;br /&gt;
* LIGHTNING TALKS: BioCompute Library Project - Sean Keeney 00:40:22 - 00:44:41  &lt;br /&gt;
* LIGHTNING TALKS: Visualization For Published BCOs - Tianyi Wang 00:44:48 - 00:49:03&lt;br /&gt;
* BCOs to Unite Data and Workflow into Analysis - Dr. Patrick McNeely 00:49:10 - 00:52:10&lt;br /&gt;
* Closing Remarks - Drs. Mazumder &amp;amp; Walderhaug - 00:52:15 - END&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 9:45&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Plenary Address&lt;br /&gt;
|-&lt;br /&gt;
!9:45 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:00 - 10:55AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00 - 10:15&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 10:55&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!10:55 - 11:10AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:10 - 12:05PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:10 - 11:25&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:05&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:05 - 1:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;18&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:10 - 4:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Technical, Administrative, and Usability Session&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:10 - 1:25&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:25 - 1:40&lt;br /&gt;
|'''Virginia Hussong'''&lt;br /&gt;
&amp;lt;small&amp;gt;Miscellaneous Administration and Program, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|1:40 - 1:55&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!1:55 - 2:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:10 - 2:25&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:25 - 2:40&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
|2:40 - 3:00&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:00 - 3:15&lt;br /&gt;
|'''Hadley King'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Scientist, HIVE Lab, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Portal, BioCompute Database, and User Database: Why so many?&lt;br /&gt;
|-&lt;br /&gt;
!3:15 - 3:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:30 - 3:45&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:45 - 4:00&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:00 - 4:15&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:15 - 4:30&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:30 - 4:40PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:40 - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:40 - 4:55&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:55 - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
''Mark Walderhaug and Raja Mazumder''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Virginia Hussong.jpg|none|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Virginia Hussong&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|thumb|203x203px|center]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Guangzhi Sun.jpg|thumb|254x254px|center]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Guangzhi Sun&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:HadleyKing.png|alt=Headshot for Hadley King|center|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Hadley King&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Soiland-Reyes.jpg|none|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Stian Soiland-Reyes&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mark Walderhaug.jpg|none|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Mark Walderhaug&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Julia Maritz.jpg|none|thumb|204x204px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Julia Maritz&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Use Case Collection Form&amp;lt;/big&amp;gt;==&lt;br /&gt;
&amp;lt;big&amp;gt;Please take a moment to fill out our use case collection form here: https://docs.google.com/forms/d/e/1FAIpQLSfS5E-cpPMvIdEHVqPiZnmcpsH5JetMsBAY2vnsemRWeDj5uw/viewform &amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt;==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=798</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=798"/>
		<updated>2024-05-17T13:41:16Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Organization Committee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Keeney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;&lt;br /&gt;
== &amp;lt;big&amp;gt;Conference Webinar&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;BioCompute Conference 2024 at FDA&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Presented by the BioCompute team with plenary address by CBER Director Dr. Peter Marks&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Published May 10, 2024&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Part 1: https://fda.zoomgov.com/rec/play/3Sdy2RUOnV7vhfE3FbcT_zjMgh60CxsBf5bawVk_5O6Dh3OkGGaX6x1kTNElXqRRRe-iC__QuqcyF3s.bOfSF4ygJb7JhQgb?canPlayFromShare=true&amp;amp;from=share_recording_detail&amp;amp;continueMode=true&amp;amp;componentName=rec-play&amp;amp;originRequestUrl=https%3A%2F%2Ffda.zoomgov.com%2Frec%2Fshare%2FHVDzqhtgev_jo-_fDfgO8rjvV4uH8_KtFz9l6XlChFOc-0E9WlfryBqvgvJCX7Ed.vOEBh65if8cmnEYl &lt;br /&gt;
&lt;br /&gt;
Part 2: https://fda.zoomgov.com/rec/play/3Sdy2RUOnV7vhfE3FbcT_zjMgh60CxsBf5bawVk_5O6Dh3OkGGaX6x1kTNElXqRRRe-iC__QuqcyF3s.bOfSF4ygJb7JhQgb?canPlayFromShare=true&amp;amp;from=share_recording_detail&amp;amp;continueMode=true&amp;amp;componentName=rec-play&amp;amp;originRequestUrl=https%3A%2F%2Ffda.zoomgov.com%2Frec%2Fshare%2FHVDzqhtgev_jo-_fDfgO8rjvV4uH8_KtFz9l6XlChFOc-0E9WlfryBqvgvJCX7Ed.vOEBh65if8cmnEYl&amp;amp;autoplay=true&amp;amp;startTime=1715371778000&lt;br /&gt;
&lt;br /&gt;
Part 1:&lt;br /&gt;
&lt;br /&gt;
* Intro - Dr. Keeney:  00:00-11:35&lt;br /&gt;
* Vision and Future of Biocompute - Dr. Mazumder  11:45 - 27:45&lt;br /&gt;
* FDA Alignment With The Vision of Biocompute - Peter Marks 28:48 - 40:25&lt;br /&gt;
* Biocompute Vision From an FDA-Industry Perspective - Dr. Vahan Simonyan 43:23 - 1:00:07&lt;br /&gt;
* A computational framework for end-to-end clinical omics analysis - Jun Luo 1:00:26 - 1:09:57&lt;br /&gt;
* Applications of Biocompute Objects For Viral Metagenomics Analysis - Julia Maritz 1:10:47 - 1:20:40&lt;br /&gt;
* Question Panel 1: 1:21:23 - 1:41:10&lt;br /&gt;
* Biocompute Objects and Workflows - Mark Walderhaug 1:42:14 - 1:59:20&lt;br /&gt;
* Computational Reviews at CBER - Luis V Santanz-Quintero 1:59:40 - 2:12:08&lt;br /&gt;
* High Throughput Sequencing Data Challenges in FDA Regulatory Review - Eric Donaldson 2:12:23 - 2:29:44&lt;br /&gt;
* Question Panel 2: 2:30:26 - 2:43:17&lt;br /&gt;
* AI and Data Science For Health and Research: Exploring NIH Strategies, Challenges, and Visions for the Future - Susan Gregurick -  2:43:43 - 3:00:20&lt;br /&gt;
* Biocompute Object Submissions to FDA - Ginny Hussong 3:02:32 - 3:09:27&lt;br /&gt;
* Extending BCO Specification into a Generic Metamodel For Computable Data - Guangzhi Sun - 3:15:17 - 3:29:39&lt;br /&gt;
* Functioning Biocompute Objects As AI Agents - Jonas S Almeida 3:37:17 - 3:51:03&lt;br /&gt;
* DNAnexus: Democratizing access to BCOs with the BCOnexus Platform Free Editor - Sam Westreich 3:52:20 - 4:04:20&lt;br /&gt;
* Facilitating BCO Use From Standard to Best Practices: The Neoantigen Use Case - Dennis A. Dean 4:06:09 - 4:25:21&lt;br /&gt;
* BioCompute Portal, BioCompute Database, and User Database: Why So Many? - Charles Hadley King 4:28:52 - 4:46:28&lt;br /&gt;
* BCO Provenance Models and FAIR Computational Workflows - Stain Soiland-Reyes &amp;amp; Meznah Aloqalaa 4:50:00 - 5:05:18 &lt;br /&gt;
* Generating BCO’s For Nextflow Pipelines - Ben Sherman 5:10:51 - Cont. on Part 2&lt;br /&gt;
&lt;br /&gt;
Part 2:&lt;br /&gt;
&lt;br /&gt;
* Generating BCO’s For Nextflow Pipelines - Ben Sherman CONT. Prev - 00:03:13&lt;br /&gt;
* Large Language Models - Konstantinos Krampis 00:09:42 - 00:22:50&lt;br /&gt;
* Retrieval-Augmented Generation For BioCompute Object Creation - Sean Kim 00:24:04 - 00:38:20&lt;br /&gt;
* LIGHTNING TALKS: BioCompute Library Project - Sean Keeney 00:40:22 - 00:44:41  &lt;br /&gt;
* LIGHTNING TALKS: Visualization For Published BCOs - Tianyi Wang 00:44:48 - 00:49:03&lt;br /&gt;
* BCOs to Unite Data and Workflow into Analysis - Dr. Patrick McNeely 00:49:10 - 00:52:10&lt;br /&gt;
* Closing Remarks - Dr. Mazumder &amp;amp; Mark Walderhaug - 00:52:15 - END  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 9:45&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Plenary Address&lt;br /&gt;
|-&lt;br /&gt;
!9:45 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:00 - 10:55AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00 - 10:15&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 10:55&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!10:55 - 11:10AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:10 - 12:05PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:10 - 11:25&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:05&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:05 - 1:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;18&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:10 - 4:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Technical, Administrative, and Usability Session&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:10 - 1:25&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:25 - 1:40&lt;br /&gt;
|'''Virginia Hussong'''&lt;br /&gt;
&amp;lt;small&amp;gt;Miscellaneous Administration and Program, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|1:40 - 1:55&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!1:55 - 2:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:10 - 2:25&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:25 - 2:40&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
|2:40 - 3:00&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:00 - 3:15&lt;br /&gt;
|'''Hadley King'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Scientist, HIVE Lab, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Portal, BioCompute Database, and User Database: Why so many?&lt;br /&gt;
|-&lt;br /&gt;
!3:15 - 3:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:30 - 3:45&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:45 - 4:00&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:00 - 4:15&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:15 - 4:30&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:30 - 4:40PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:40 - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:40 - 4:55&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:55 - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
''Mark Walderhaug and Raja Mazumder''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Virginia Hussong.jpg|none|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Virginia Hussong&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|thumb|203x203px|center]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Guangzhi Sun.jpg|thumb|254x254px|center]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Guangzhi Sun&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:HadleyKing.png|alt=Headshot for Hadley King|center|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Hadley King&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Soiland-Reyes.jpg|none|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Stian Soiland-Reyes&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mark Walderhaug.jpg|none|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Mark Walderhaug&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Julia Maritz.jpg|none|thumb|204x204px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Julia Maritz&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Use Case Collection Form&amp;lt;/big&amp;gt;==&lt;br /&gt;
&amp;lt;big&amp;gt;Please take a moment to fill out our use case collection form here: https://docs.google.com/forms/d/e/1FAIpQLSfS5E-cpPMvIdEHVqPiZnmcpsH5JetMsBAY2vnsemRWeDj5uw/viewform &amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt;==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=789</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=789"/>
		<updated>2024-05-09T17:30:09Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Confirmed Presenters */ Changed Steph's picture with Hadley's.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 9:45&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Plenary Address&lt;br /&gt;
|-&lt;br /&gt;
!9:45 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:00 - 10:55AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00 - 10:15&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 10:55&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!10:55 - 11:10AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:10 - 12:05PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:10 - 11:25&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:05&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:05 - 1:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;18&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:10 - 4:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Technical, Administrative, and Usability Session&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:10 - 1:25&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:25 - 1:40&lt;br /&gt;
|'''Virginia Hussong'''&lt;br /&gt;
&amp;lt;small&amp;gt;Miscellaneous Administration and Program, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|1:40 - 1:55&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!1:55 - 2:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:10 - 2:25&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:25 - 2:40&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
|2:40 - 3:00&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:00 - 3:15&lt;br /&gt;
|'''Hadley King'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Scientist, HIVE Lab, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Portal, BioCompute Database, and User Database: Why so many?&lt;br /&gt;
|-&lt;br /&gt;
!3:15 - 3:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:30 - 3:45&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:45 - 4:00&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:00 - 4:15&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:15 - 4:30&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:30 - 4:40PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:40 - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:40 - 4:55&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:55 - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
''Mark Walderhaug and Raja Mazumder''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Virginia Hussong.jpg|none|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Virginia Hussong&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|thumb|203x203px|center]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Guangzhi Sun.jpg|thumb|254x254px|center]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Guangzhi Sun&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:HadleyKing.png|alt=Headshot for Hadley King|center|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Stephanie Singleton&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Soiland-Reyes.jpg|none|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Stian Soiland-Reyes&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mark Walderhaug.jpg|none|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Mark Walderhaug&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Julia Maritz.jpg|none|thumb|204x204px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Julia Maritz&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Use Case Collection Form&amp;lt;/big&amp;gt;==&lt;br /&gt;
&amp;lt;big&amp;gt;Please take a moment to fill out our use case collection form here: https://docs.google.com/forms/d/e/1FAIpQLSfS5E-cpPMvIdEHVqPiZnmcpsH5JetMsBAY2vnsemRWeDj5uw/viewform &amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt;==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=File:HadleyKing.png&amp;diff=788</id>
		<title>File:HadleyKing.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=File:HadleyKing.png&amp;diff=788"/>
		<updated>2024-05-09T17:28:56Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Headshot for Hadley King.&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=787</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=787"/>
		<updated>2024-05-09T13:39:04Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */ Change Steph for Hadley&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 9:45&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Plenary Address&lt;br /&gt;
|-&lt;br /&gt;
!9:45 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:00 - 10:55AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00 - 10:15&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 10:55&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!10:55 - 11:10AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:10 - 12:05PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:10 - 11:25&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:05&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:05 - 1:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;18&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:10 - 4:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Technical, Administrative, and Usability Session&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:10 - 1:25&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:25 - 1:40&lt;br /&gt;
|'''Virginia Hussong'''&lt;br /&gt;
&amp;lt;small&amp;gt;Miscellaneous Administration and Program, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|1:40 - 1:55&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!1:55 - 2:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:10 - 2:25&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:25 - 2:40&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
|2:40 - 3:00&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:00 - 3:15&lt;br /&gt;
|'''Hadley King'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Scientist, HIVE Lab, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Portal, BioCompute Database, and User Database: Why so many?&lt;br /&gt;
|-&lt;br /&gt;
!3:15 - 3:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:30 - 3:45&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:45 - 4:00&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:00 - 4:15&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:15 - 4:30&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:30 - 4:40PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:40 - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:40 - 4:55&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:55 - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
''Mark Walderhaug and Raja Mazumder''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Virginia Hussong.jpg|none|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Virginia Hussong&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|thumb|203x203px|center]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Guangzhi Sun.jpg|thumb|254x254px|center]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Guangzhi Sun&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Steph photo argos2.jpeg|alt=Headshot for Steph Singleton|thumb|199x199px|center]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Stephanie Singleton&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Soiland-Reyes.jpg|none|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Stian Soiland-Reyes&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mark Walderhaug.jpg|none|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Mark Walderhaug&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Julia Maritz.jpg|none|thumb|204x204px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Julia Maritz&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Use Case Collection Form&amp;lt;/big&amp;gt;==&lt;br /&gt;
&amp;lt;big&amp;gt;Please take a moment to fill out our use case collection form here: https://docs.google.com/forms/d/e/1FAIpQLSfS5E-cpPMvIdEHVqPiZnmcpsH5JetMsBAY2vnsemRWeDj5uw/viewform &amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt;==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=765</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=765"/>
		<updated>2024-05-03T21:09:31Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */ Formatting.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 9:45&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Plenary Address&lt;br /&gt;
|-&lt;br /&gt;
!9:45 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:00 - 10:55AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00 - 10:15&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 10:55&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!10:55 - 11:10AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:10 - 12:05PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:10 - 11:25&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:05&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:05 - 1:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;18&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:40 - 4:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Technical, Administrative, and Usability Session&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:10 - 1:25&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:25 - 1:40&lt;br /&gt;
|'''Virginia Hussong'''&lt;br /&gt;
&amp;lt;small&amp;gt;Miscellaneous Administration and Program, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|1:40 - 1:55&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!1:55 - 2:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:10 - 2:25&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:25 - 2:40&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
|2:40 - 3:00&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:00 - 3:15&lt;br /&gt;
|'''Steph Singleton'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Scientist, Technical Project Manager,  Essential Software Inc.&amp;lt;/small&amp;gt;&lt;br /&gt;
|Capturing Machine Learning Pipelines via BioCompute Objects&lt;br /&gt;
|-&lt;br /&gt;
!3:15 - 3:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:30 - 3:45&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:45 - 4:00&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:00 - 4:15&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:15 - 4:30&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:30 - 4:40PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:40 - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:40 - 4:55&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:55 - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
''Mark Walderhaug and Raja Mazumder''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Steph photo argos2.jpeg|alt=Headshot for Steph Singleton|thumb|199x199px|center]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Stephanie Singleton&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=759</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=759"/>
		<updated>2024-05-03T20:34:22Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Confirmed Presenters */ Update Steph Singleton&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 9:45&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Plenary Address&lt;br /&gt;
|-&lt;br /&gt;
!9:45 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:00 - 10:55AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00 - 10:15&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 10:55&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!10:55 - 11:10AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:10 - 12:05PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:10 - 11:25&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:05&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:05 - 1:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;18&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:40 - 4:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Technical, Administrative, and Usability Session&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:10 - 1:25&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:25 - 1:40&lt;br /&gt;
|'''Virginia Hussong'''&lt;br /&gt;
&amp;lt;small&amp;gt;Miscellaneous Administration and Program, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|1:40 - 1:55&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!1:55 - 2:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:10 - 2:25&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:25 - 2:40&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
|2:40 - 3:00&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:00 - 3:15&lt;br /&gt;
|'''Steph Singleton'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Scientist, Technical Project Manager,  Essential Software Inc.&amp;lt;/small&amp;gt;&lt;br /&gt;
|Capturing Machine Learning Pipelines via BioCompute Objects&lt;br /&gt;
|-&lt;br /&gt;
!3:15PM - 3:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:30 - 3:45&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:45 - 4:00&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:00 - 4:15&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:15 - 4:30&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:30PM - 4:40PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:40PM - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:40 - 4:55&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:55PM - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
''Mark Walderhaug and Raja Mazumder''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Steph photo argos2.jpeg|alt=Headshot for Steph Singleton|thumb|220x220px]]Steph Singleton&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=File:Steph_photo_argos2.jpeg&amp;diff=758</id>
		<title>File:Steph photo argos2.jpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=File:Steph_photo_argos2.jpeg&amp;diff=758"/>
		<updated>2024-05-03T20:31:17Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=File:Steph_photo_argos.jpeg&amp;diff=757</id>
		<title>File:Steph photo argos.jpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=File:Steph_photo_argos.jpeg&amp;diff=757"/>
		<updated>2024-05-03T20:28:05Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: Headshot for Steph Singleton&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Headshot for Steph Singleton&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=756</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=756"/>
		<updated>2024-05-03T20:25:28Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */ Update Steph Singleton&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 9:45&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Plenary Address&lt;br /&gt;
|-&lt;br /&gt;
!9:45 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:00 - 10:55AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00 - 10:15&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 10:55&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!10:55 - 11:10AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:10 - 12:05PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:10 - 11:25&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:05&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:05 - 1:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;18&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:40 - 4:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Technical, Administrative, and Usability Session&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:10 - 1:25&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:25 - 1:40&lt;br /&gt;
|'''Virginia Hussong'''&lt;br /&gt;
&amp;lt;small&amp;gt;Miscellaneous Administration and Program, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|1:40 - 1:55&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!1:55 - 2:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:10 - 2:25&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:25 - 2:40&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
|2:40 - 3:00&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:00 - 3:15&lt;br /&gt;
|'''Steph Singleton'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Scientist, Technical Project Manager,  Essential Software Inc.&amp;lt;/small&amp;gt;&lt;br /&gt;
|Capturing Machine Learning Pipelines via BioCompute Objects&lt;br /&gt;
|-&lt;br /&gt;
!3:15PM - 3:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:30 - 3:45&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:45 - 4:00&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:00 - 4:15&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:15 - 4:30&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:30PM - 4:40PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:40PM - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:40 - 4:55&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:55PM - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
''Mark Walderhaug and Raja Mazumder''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=755</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=755"/>
		<updated>2024-05-03T17:07:40Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 9:45&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Plenary Address&lt;br /&gt;
|-&lt;br /&gt;
!9:45 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:00 - 10:55AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00 - 10:15&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 10:55&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!10:55 - 11:10AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:10 - 12:05PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:10 - 11:25&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:05&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:05 - 1:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;18&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:40 - 4:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Technical, Administrative, and Usability Session&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:10 - 1:25&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:25 - 1:40&lt;br /&gt;
|'''Virginia Hussong'''&lt;br /&gt;
&amp;lt;small&amp;gt;Miscellaneous Administration and Program, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|1:40 - 1:55&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!1:55 - 2:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:10 - 2:25&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:25 - 2:40&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
|2:40 - 3:00&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:00 - 3:15&lt;br /&gt;
|'''Stephanie Singleton'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics,  Essential Software Inc.&amp;lt;/small&amp;gt;&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
!3:15PM - 3:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:30 - 3:45&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:45 - 4:00&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:00 - 4:15&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:15 - 4:30&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:30PM - 4:40PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:40PM - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:40 - 4:55&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:55PM - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
''Mark Walderhaug and Raja Mazumder''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=754</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=754"/>
		<updated>2024-05-03T16:27:49Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 9:45&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Plenary Address&lt;br /&gt;
|-&lt;br /&gt;
!9:45 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:00 - 10:55AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00 - 10:15&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 10:55&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!10:55 - 11:10AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:10 - 12:05PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:10 - 11:25&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:05&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:05 - 1:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;18&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:40 - 4:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Technical, Administrative, and Usability Session&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:10 - 1:25&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:25 - 1:40&lt;br /&gt;
|'''Virginia Hussong'''&lt;br /&gt;
&amp;lt;small&amp;gt;Miscellaneous Administration and Program, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|1:40 - 1:55&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!1:55 - 2:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:10 - 2:25&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:25 - 2:40&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
|2:40 - 3:00&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:00 - 3:15&lt;br /&gt;
|'''Stephanie Singleton'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics,  Frederick National Laboratory&amp;lt;/small&amp;gt;&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
!3:15PM - 3:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:30 - 3:45&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:45 - 4:00&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:00 - 4:15&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:15 - 4:30&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:30PM - 4:40PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:40PM - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:40 - 4:55&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:55PM - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
''Mark Walderhaug and Raja Mazumder''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=753</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=753"/>
		<updated>2024-05-03T15:23:33Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 9:45&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Plenary Address&lt;br /&gt;
|-&lt;br /&gt;
!9:45 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:00 - 10:55AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00 - 10:15&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 10:55&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!10:55 - 11:10AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:10 - 12:05PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:10 - 11:25&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:05&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:05 - 1:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;18&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:40 - 4:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Technical, Administrative, and Usability Session&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:10 - 1:25&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:25 - 1:40&lt;br /&gt;
|'''Virginia Hussong'''&lt;br /&gt;
&amp;lt;small&amp;gt;Miscellaneous Administration and Program, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|1:40 - 1:55&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!1:55 - 2:10PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:10 - 2:25&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:25 - 2:40&lt;br /&gt;
|'''Stephanie Singleton'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics,  Frederick National Laboratory&amp;lt;/small&amp;gt;&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|2:40 - 3:00&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:00 - 3:15&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:15PM - 3:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:30 - 3:45&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:45 - 4:00&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:00 - 4:15&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:15 - 4:30&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:30PM - 4:40PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:40PM - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:40 - 4:55&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:55PM - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
''Mark Walderhaug and Raja Mazumder''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=737</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=737"/>
		<updated>2024-04-24T17:09:27Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */ Update Ginny Hussong&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00AM - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 10:00&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Plenary Address&lt;br /&gt;
|-&lt;br /&gt;
!10:00AM - 10:15AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:15AM - 11:10AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 11:00 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|11:00am - 11:10am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:10AM - 11:25AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:25AM - 12:20PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:10&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|12:10 - 12:20&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:20PM - 1:25PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:25PM - 4:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:25 - 1:40&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:40 - 1:55&lt;br /&gt;
|'''Virginia Hussong'''&lt;br /&gt;
&amp;lt;small&amp;gt;Miscellaneous Administration and Program, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|1:55 - 2:10&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!2:10PM - 2:25PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:25 - 2:40&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:40 - 3:00&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:00 - 3:15&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:15PM - 3:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:30 - 3:45&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:45 - 4:00&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:00 - 4:15&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:15 - 4:30&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:30PM - 4:40PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:40PM - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:40 - 4:55&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:55PM - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=734</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=734"/>
		<updated>2024-04-24T15:17:57Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */ Time formatting.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 10:00&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Plenary Address&lt;br /&gt;
|-&lt;br /&gt;
!10:00 - 10:15AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:15 - 11:10AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 11:00 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|11:00am - 11:10am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:10 - 11:25AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:25AM - 12:20PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:10&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|12:10 - 12:20&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:20 - 1:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:30 - 4:35PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:30 - 1:45&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:45 - 2:00&lt;br /&gt;
|Regualtory Advisory Board representative&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|2:00 - 2:15&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!2:15 - 2:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:30 - 2:45&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:45 - 3:05&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:05 - 3:20&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:20 - 3:35PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:35 - 3:50&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:50 - 4:05&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:05 - 4:20&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:20 - 4:35&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:35 - 4:45PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:45 - 5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:45 - 5:00&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!5:00PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=733</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=733"/>
		<updated>2024-04-24T15:15:35Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */ Switch FDA block with regulated industry block.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
&amp;lt;big&amp;gt;We encourage all attendees to arrive around 8:30 AM, thirty minutes prior to the start of the event at 9:00 AM, to ensure they have enough time to settle in and make the most of the day.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Accommodation&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;If you require accommodation during your stay, please refer to the following document for a list of hotels near the FDA White Oak Campus: [https://www.foundationforpn.org/wp-content/uploads/2016/04/Hotels-by-the-FDA-White-Oak.pdf Hotels by the FDA White Oak Campus]. This resource provides information on nearby accommodations to ensure your comfort and convenience during the event.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus); Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Morning&lt;br /&gt;
Session&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00 - 10:00AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00 - 9:15&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Welcome and Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15 - 9:30&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30 - 10:00&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision&lt;br /&gt;
|-&lt;br /&gt;
!10:00 - 10:15AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:15 - 11:10AM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:15 - 10:30&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema, DNA HIVE&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Vision from an FDA-Industry Perspective&lt;br /&gt;
|-&lt;br /&gt;
|10:30 - 10:45&lt;br /&gt;
|'''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
|A Computational Framework for end-to-end Clinical Omics Analysis: Single Cell Mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|10:45 - 11:00 &lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|11:00am - 11:10am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:10 - 11:25AM &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:25AM - 12:20PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:25 - 11:40&lt;br /&gt;
| '''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and Workflows&lt;br /&gt;
|-&lt;br /&gt;
|11:40 - 11:55&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:55 - 12:10&lt;br /&gt;
| '''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
| Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|12:10 - 12:20&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!12:20 - 1:30PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;17&amp;quot; |Afternoon&lt;br /&gt;
Session&lt;br /&gt;
!1:30 - 4:35PM&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:30pm - 1:45pm&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:45pm - 2:00pm&lt;br /&gt;
|Regualtory Advisory Board representative&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm - 2:15pm&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, China National Institute of Standardization (CNIS), ISO&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a Generic Metamodel for Computable Data&lt;br /&gt;
|-&lt;br /&gt;
!2:15pm - 2:30pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:30pm - 2:45pm&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:45pm - 3:05pm&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:05pm - 3:20pm&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:20pm - 3:35pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:35pm - 3:50pm&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, Provenance Models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:50pm - 4:05pm&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute Objects for Nextflow Pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:05pm - 4:20pm&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:20pm - 4:35pm&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:35pm - 4:45pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:45pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:45pm - 5:00pm&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=721</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=721"/>
		<updated>2024-04-21T14:24:35Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */ Spelling fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus) Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00am - 10:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00am - 9:15am&lt;br /&gt;
|'''Jonathon  Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:15am - 9:30am&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:30am - 9:45am&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute vision from an FDA-Industry perspective &lt;br /&gt;
|-&lt;br /&gt;
|9:45am - 10:15am&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision&lt;br /&gt;
|-&lt;br /&gt;
!10:15am - 10:30am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break''&lt;br /&gt;
|-&lt;br /&gt;
!10:30am - 11:15am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:30am - 10:45am&lt;br /&gt;
|'''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and standards&lt;br /&gt;
|-&lt;br /&gt;
|10:45am - 11:00am&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|11:00am - 11:15am &lt;br /&gt;
|'''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
|Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|11:15am - 11:25am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:25am - 11:35am &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:35am - 12:30am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:35am - 11:50am&lt;br /&gt;
| UNCONFIRMED&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|11:50am - 12:05pm&lt;br /&gt;
| '''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
| A computational framework for end-to-end clinical omics analysis: Single cell mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|12:05pm - 12:20pm&lt;br /&gt;
|'''Julia Maritz'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Applications of BioCompute Objects for Viral Metagenomics Analysis&lt;br /&gt;
|-&lt;br /&gt;
|12:20pm - 12:30pm&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!12:30pm - 1:30pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
!1:30pm - 4:35pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:30pm - 1:45pm&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:45pm - 2:00pm&lt;br /&gt;
|Regualtory Advisory Board representative&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm - 2:15pm&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, CNIS&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a generic metamodel for computable data&lt;br /&gt;
|-&lt;br /&gt;
!2:15pm - 2:30pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:30pm - 2:45pm&lt;br /&gt;
|'''Jonas Almeida'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, Division of Cancer Epidemiology and Genetics,  NCI&amp;lt;/small&amp;gt;&lt;br /&gt;
|Functionalization of Biocompute Objects using Generative AI&lt;br /&gt;
|-&lt;br /&gt;
|2:45pm - 3:05pm&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|3:05pm - 3:20pm&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:20pm - 3:35pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:35pm - 3:50pm&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, provenance models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:50pm - 4:05pm&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute objects for Nextflow pipelines&lt;br /&gt;
|-&lt;br /&gt;
|4:05pm - 4:20pm&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
|4:20pm - 4:35pm&lt;br /&gt;
|'''Sean Kim'''&lt;br /&gt;
&amp;lt;small&amp;gt;Bioinformatics Specialist, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Enhanced BioCompute Object Creation through Retrieval-Augmented Generation from Scientific Papers&lt;br /&gt;
|-&lt;br /&gt;
!4:35pm - 4:45pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:45pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:45pm - 5:00pm&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Peter Marks.png|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Peter Marks&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Susan K. Gregurick.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Susan K. Gregurick&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Mazumder, Raja.jpeg.jpg|none|thumb|245x245px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jonas Almeida.png|center|thumb|241x241px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jonas Almeida&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|240x240px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|204x204px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|thumb|200x200px|center]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Keeney Jonathon 5309 MOD.jpg|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Sean Kim.png|none|thumb|222x222px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Sean Kim&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=680</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=680"/>
		<updated>2024-04-01T14:57:41Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus) Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00am - 10:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00am - 9:10am&lt;br /&gt;
|'''Jonathon Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:10am - 9:25am&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 9:40am&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute vision from an FDA-Industry perspective &lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 10:00am&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision&lt;br /&gt;
|-&lt;br /&gt;
!10:00am - 11:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00am - 10:20am&lt;br /&gt;
|'''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and standards&lt;br /&gt;
|-&lt;br /&gt;
|10:20am - 10:35am&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|10:35am - 10:50am &lt;br /&gt;
|'''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
|Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|10:50am - 11:00am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:00am - 11:20am &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:20am - 12:15am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:20am - 11:35am&lt;br /&gt;
| UNCONFIRMED&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|11:35am - 11:50am&lt;br /&gt;
| '''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
| A computational framework for end-to-end clinical omics analysis: Single cell mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|11:50am - 12:05pm&lt;br /&gt;
|'''Jack Baker'''&lt;br /&gt;
&amp;lt;small&amp;gt;Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Considerations for adoption from industry&lt;br /&gt;
|-&lt;br /&gt;
|12:05pm - 12:15pm&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!12:15pm - 1:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
!1:15pm - 4:10pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:15pm - 1:30pm&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|AI for Health and Research: Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:30pm - 1:45pm&lt;br /&gt;
|'''Elaine Thompson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Vice President Bioinformatics, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO-CDISC: An emerging role for BioCompute: CDISC Standards for Cell and Gene Therapy Product (CGTP) Monitoring.&lt;br /&gt;
|-&lt;br /&gt;
|1:45pm - 2:00pm&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, CNIS&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a generic metamodel for computable data&lt;br /&gt;
|-&lt;br /&gt;
!2:00pm - 2:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:15pm - 2:30pm&lt;br /&gt;
|Regualtory Advisory Board representative&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|2:30pm - 2:50pm&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|2:50pm - 3:05pm&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:05pm - 3:20pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:20pm - 3:35pm&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, provenance models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:35pm - 3:50pm&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute objects for Nextflow pipelines&lt;br /&gt;
|-&lt;br /&gt;
|3:50pm - 4:05pm&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
!4:05pm - 4:30pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:30pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:30pm - 4:45pm&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:45pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Elaine Thompson.jpg|thumb|200x200px|none]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Elaine E. Thompson, Ph.D.&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|none|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Jonathon Keeney.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Raja Mazumder.png|none|thumb|200x200px]]         &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jack Baker.png|center|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jack Baker&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=679</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=679"/>
		<updated>2024-04-01T14:56:15Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus) Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00am - 10:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00am - 9:10am&lt;br /&gt;
|'''Jonathon Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:10am - 9:25am&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 9:40am&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute vision from an FDA-Industry perspective &lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 10:00am&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision&lt;br /&gt;
|-&lt;br /&gt;
!10:00am - 11:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00am - 10:20am&lt;br /&gt;
|'''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and standards&lt;br /&gt;
|-&lt;br /&gt;
|10:20am - 10:35am&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|10:35am - 10:50am &lt;br /&gt;
|'''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
|Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|10:50am - 11:00am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:00am - 11:20am &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:20am - 12:15am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:20am - 11:35am&lt;br /&gt;
| UNCONFIRMED&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|11:35am - 11:50am&lt;br /&gt;
| '''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
| A computational framework for end-to-end clinical omics analysis: Single cell mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|11:50am - 12:05pm&lt;br /&gt;
|'''Jack Baker'''&lt;br /&gt;
&amp;lt;small&amp;gt;Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Considerations for adoption from industry&lt;br /&gt;
|-&lt;br /&gt;
|12:05pm - 12:15pm&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!12:15pm - 1:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
!1:15pm - 4:10pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:15pm - 1:30pm&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|'''AI for Health and Research'''​&lt;br /&gt;
Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:30pm - 1:45pm&lt;br /&gt;
|'''Elaine Thompson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Vice President Bioinformatics, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO-CDISC: An emerging role for BioCompute: CDISC Standards for Cell and Gene Therapy Product (CGTP) Monitoring.&lt;br /&gt;
|-&lt;br /&gt;
|1:45pm - 2:00pm&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, CNIS&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a generic metamodel for computable data&lt;br /&gt;
|-&lt;br /&gt;
!2:00pm - 2:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:15pm - 2:30pm&lt;br /&gt;
|Regualtory Advisory Board representative&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|2:30pm - 2:50pm&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|2:50pm - 3:05pm&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:05pm - 3:20pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:20pm - 3:35pm&lt;br /&gt;
|'''Stian Soiland-Reyes and Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester/Ph.D. Student&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, provenance models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:35pm - 3:50pm&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute objects for Nextflow pipelines&lt;br /&gt;
|-&lt;br /&gt;
|3:50pm - 4:05pm&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
!4:05pm - 4:30pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:30pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:30pm - 4:45pm&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:45pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Elaine Thompson.jpg|thumb|200x200px|none]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Elaine E. Thompson, Ph.D.&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|none|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Jonathon Keeney.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Raja Mazumder.png|none|thumb|200x200px]]         &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jack Baker.png|center|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jack Baker&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=678</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=678"/>
		<updated>2024-04-01T13:42:52Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus) Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00am - 10:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00am - 9:10am&lt;br /&gt;
|'''Jonathon Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:10am - 9:25am&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 9:40am&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute vision from an FDA-Industry perspective &lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 10:00am&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision&lt;br /&gt;
|-&lt;br /&gt;
!10:00am - 11:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00am - 10:20am&lt;br /&gt;
|'''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and standards&lt;br /&gt;
|-&lt;br /&gt;
|10:20am - 10:35am&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|10:35am - 10:50am &lt;br /&gt;
|'''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
|Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|10:50am - 11:00am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:00am - 11:20am &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:20am - 12:15am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:20am - 11:35am&lt;br /&gt;
| UNCONFIRMED&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|11:35am - 11:50am&lt;br /&gt;
| '''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
| A computational framework for end-to-end clinical omics analysis: Single cell mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|11:50am - 12:05pm&lt;br /&gt;
|'''Jack Baker'''&lt;br /&gt;
&amp;lt;small&amp;gt;Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Considerations for adoption from industry&lt;br /&gt;
|-&lt;br /&gt;
|12:05pm - 12:15pm&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!12:15pm - 1:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
!1:15pm - 4:10pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:15pm - 1:30pm&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|'''AI for Health and Research'''​&lt;br /&gt;
Exploring NIH’s Strategies, Challenges, and Vision for the Future&lt;br /&gt;
|-&lt;br /&gt;
|1:30pm - 1:45pm&lt;br /&gt;
|'''Elaine Thompson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Vice President Bioinformatics, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO-CDISC: An emerging role for BioCompute: CDISC Standards for Cell and Gene Therapy Product (CGTP) Monitoring.&lt;br /&gt;
|-&lt;br /&gt;
|1:45pm - 2:00pm&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Researcher, CNIS&amp;lt;/small&amp;gt;&lt;br /&gt;
|Extending BCO specification into a generic metamodel for computable data&lt;br /&gt;
|-&lt;br /&gt;
!2:00pm - 2:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:15pm - 2:30pm&lt;br /&gt;
|Regualtory Advisory Board representative&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|2:30pm - 2:50pm&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Facilitating BCO Use from Standard to Best Practices: The Neoantigen Workflow Use Case&lt;br /&gt;
|-&lt;br /&gt;
|2:50pm - 3:05pm&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:05pm - 3:20pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:20pm - 3:35pm&lt;br /&gt;
|'''Stian Soiland-Reyes'''&lt;br /&gt;
&amp;lt;small&amp;gt;Senior Lecturer, University of Manchester&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO, provenance models (PRIMAD, RO-Crate) and FAIR Computational Workflows&lt;br /&gt;
|-&lt;br /&gt;
|3:35pm - 3:50pm&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Generating BioCompute objects for Nextflow pipelines&lt;br /&gt;
|-&lt;br /&gt;
|3:50pm - 4:05pm&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
!4:05pm - 4:30pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:30pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:30pm - 4:45pm&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:45pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Elaine Thompson.jpg|thumb|200x200px|none]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Elaine E. Thompson, Ph.D.&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|none|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Jonathon Keeney.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Raja Mazumder.png|none|thumb|200x200px]]         &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Ben Sherman.png|none|thumb|200x200px]]   &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Ben Sherman&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jack Baker.png|center|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jack Baker&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=661</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=661"/>
		<updated>2024-03-26T13:54:41Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus) Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00am - 10:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00am - 9:10am&lt;br /&gt;
|'''Jonathon Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:10am - 9:25am&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 9:40am&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute vision from an FDA-Industry perspective &lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 10:00am&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision&lt;br /&gt;
|-&lt;br /&gt;
!10:00am - 11:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00am - 10:20am&lt;br /&gt;
|'''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute Objects and standards&lt;br /&gt;
|-&lt;br /&gt;
|10:20am - 10:35am&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|10:35am - 10:50am &lt;br /&gt;
|'''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
|Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|10:50am - 11:00am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:00am - 11:20am &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:20am - 12:15am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:20am - 11:35am&lt;br /&gt;
| UNCONFIRMED&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|11:35am - 11:50am&lt;br /&gt;
| '''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
| A computational framework for end-to-end clinical omics analysis: Single cell mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|11:50am - 12:05pm&lt;br /&gt;
|'''Jack Baker'''&lt;br /&gt;
&amp;lt;small&amp;gt;Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Considerations for adoption from industry&lt;br /&gt;
|-&lt;br /&gt;
|12:05pm - 12:15pm&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!12:15pm - 1:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
!1:15pm - 4:10pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:15pm - 1:30pm&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|1:30pm - 1:45pm&lt;br /&gt;
|'''Elaine Thompson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Vice President Bioinformatics, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO-CDISC: An emerging role for BioCompute: CDISC Standards for Cell and Gene Therapy Product (CGTP) Monitoring.&lt;br /&gt;
|-&lt;br /&gt;
|1:45pm - 2:00pm&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
|Extending BCO specification into a generic metamodel for computable data&lt;br /&gt;
|-&lt;br /&gt;
!2:00pm - 2:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:15pm - 2:30pm&lt;br /&gt;
|Regualtory Advisory Board representative&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|2:30pm - 2:50pm&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Velsera&lt;br /&gt;
|-&lt;br /&gt;
|2:50pm - 3:05pm&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:05pm - 3:20pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:20pm - 3:35pm&lt;br /&gt;
|'''Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Ph.D. Student, University of Manchester&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO and PRIMAD Provenance Models&lt;br /&gt;
|-&lt;br /&gt;
|3:35pm - 3:50pm&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Nextflow-BCO&lt;br /&gt;
|-&lt;br /&gt;
|3:50pm - 4:05pm&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
!4:05pm - 4:30pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:30pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:30pm - 4:45pm&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:45pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Elaine Thompson.jpg|thumb|200x200px|none]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Elaine E. Thompson, Ph.D.&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|none|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Jonathon Keeney.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Raja Mazumder.png|none|thumb|200x200px]]         &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Charles Hadley King.png|none|thumb|200x200px]]    &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/charles-hadley-king-942693a8/ Charles Hadley King]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jack Baker.png|center|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jack Baker&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;big&amp;gt;[https://www.linkedin.com/in/phillipjwebster/ Phil Webster]- Velsera&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=658</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=658"/>
		<updated>2024-03-25T22:09:56Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus) Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00am - 10:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00am - 9:10am&lt;br /&gt;
|'''Jonathon Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:10am - 9:25am&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision and Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 9:40am&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute vision from an FDA-Industry perspective &lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 10:00am&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision&lt;br /&gt;
|-&lt;br /&gt;
!10:00am - 11:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00am - 10:20am&lt;br /&gt;
|'''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Why BCO/RAB updates&lt;br /&gt;
|-&lt;br /&gt;
|10:20am - 10:35am&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|10:35am - 10:50am &lt;br /&gt;
|'''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
|Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|10:50am - 11:00am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:00am - 11:20am &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:20am - 12:15am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:20am - 11:35am&lt;br /&gt;
| UNCONFIRMED&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|11:35am - 11:50am&lt;br /&gt;
| '''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
| A computational framework for end-to-end clinical omics analysis: Single cell mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|11:50am - 12:05pm&lt;br /&gt;
|'''Jack Baker'''&lt;br /&gt;
&amp;lt;small&amp;gt;Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Considerations for adoption from industry&lt;br /&gt;
|-&lt;br /&gt;
|12:05pm - 12:15pm&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!12:15pm - 1:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
!1:15pm - 4:10pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:15pm - 1:30pm&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|1:30pm - 1:45pm&lt;br /&gt;
|'''Elaine Thompson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Vice President Bioinformatics, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO-CDISC: An emerging role for BioCompute: CDISC Standards for Cell and Gene Therapy Product (CGTP) Monitoring.&lt;br /&gt;
|-&lt;br /&gt;
|1:45pm - 2:00pm&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
|Extending BCO specification into a generic metamodel for computable data&lt;br /&gt;
|-&lt;br /&gt;
!2:00pm - 2:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:15pm - 2:30pm&lt;br /&gt;
|Regualtory Advisory Board representative&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|2:30pm - 2:50pm&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Velsera&lt;br /&gt;
|-&lt;br /&gt;
|2:50pm - 3:05pm&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:05pm - 3:20pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:20pm - 3:35pm&lt;br /&gt;
|'''Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Ph.D. Student, University of Manchester&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO and PRIMAD Provenance Models&lt;br /&gt;
|-&lt;br /&gt;
|3:35pm - 3:50pm&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Nextflow-BCO&lt;br /&gt;
|-&lt;br /&gt;
|3:50pm - 4:05pm&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
!4:05pm - 4:30pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:30pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:30pm - 4:45pm&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:45pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Elaine Thompson.jpg|thumb|200x200px|none]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Elaine E. Thompson, Ph.D.&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|none|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Jonathon Keeney.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Raja Mazumder.png|none|thumb|200x200px]]         &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Charles Hadley King.png|none|thumb|200x200px]]    &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/charles-hadley-king-942693a8/ Charles Hadley King]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jack Baker.png|center|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jack Baker&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;big&amp;gt;[https://www.linkedin.com/in/phillipjwebster/ Phil Webster]- Velsera&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=657</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=657"/>
		<updated>2024-03-22T19:09:04Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus) Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00am - 10:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00am - 9:10am&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:10am - 9:25am&lt;br /&gt;
|'''Jonathon Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 9:40am&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute vision from an FDA-Industry perspective &lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 10:00am&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision&lt;br /&gt;
|-&lt;br /&gt;
!10:00am - 11:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00am - 10:20am&lt;br /&gt;
|'''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Why BCO/RAB updates&lt;br /&gt;
|-&lt;br /&gt;
|10:20am - 10:35am&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|10:35am - 10:50am &lt;br /&gt;
|'''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
|Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|10:50am - 11:00am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:00am - 11:20am &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:20am - 12:15am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:20am - 11:35am&lt;br /&gt;
| UNCONFIRMED&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|11:35am - 11:50am&lt;br /&gt;
| '''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
| A computational framework for end-to-end clinical omics analysis: Single cell mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|11:50am - 12:05pm&lt;br /&gt;
|'''Jack Baker'''&lt;br /&gt;
&amp;lt;small&amp;gt;Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Considerations for adoption from industry&lt;br /&gt;
|-&lt;br /&gt;
|12:05pm - 12:15pm&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!12:15pm - 1:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
!1:15pm - 4:10pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:15pm - 1:30pm&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|1:30pm - 1:45pm&lt;br /&gt;
|'''Elaine Thompson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Vice President Bioinformatics, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO-CDISC: An emerging role for BioCompute: CDISC Standards for Cell and Gene Therapy Product (CGTP) Monitoring.&lt;br /&gt;
|-&lt;br /&gt;
|1:45pm - 2:00pm&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
|Extending BCO specification into a generic metamodel for computable data&lt;br /&gt;
|-&lt;br /&gt;
!2:00pm - 2:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:15pm - 2:30pm&lt;br /&gt;
|Regualtory Advisory Board representative&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|2:30pm - 2:50pm&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Velsera&lt;br /&gt;
|-&lt;br /&gt;
|2:50pm - 3:05pm&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:05pm - 3:20pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:20pm - 3:35pm&lt;br /&gt;
|'''Meznah Aloqalaa'''&lt;br /&gt;
&amp;lt;small&amp;gt;Ph.D. Student, University of Manchester&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO and PRIMAD Provenance Models&lt;br /&gt;
|-&lt;br /&gt;
|3:35pm - 3:50pm&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Nextflow-BCO&lt;br /&gt;
|-&lt;br /&gt;
|3:50pm - 4:05pm&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
!4:05pm - 4:30pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:30pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:30pm - 4:45pm&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:45pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Elaine Thompson.jpg|thumb|200x200px|none]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Elaine E. Thompson, Ph.D.&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|none|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Jonathon Keeney.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Raja Mazumder.png|none|thumb|200x200px]]         &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Charles Hadley King.png|none|thumb|200x200px]]    &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/charles-hadley-king-942693a8/ Charles Hadley King]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jack Baker.png|center|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jack Baker&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;big&amp;gt;[https://www.linkedin.com/in/phillipjwebster/ Phil Webster]- Velsera&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=656</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=656"/>
		<updated>2024-03-22T18:57:57Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus) Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!&amp;lt;big&amp;gt;Time&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Speaker&amp;lt;/big&amp;gt;&lt;br /&gt;
!&amp;lt;big&amp;gt;Content&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
!9:00am - 10:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Introduction and Future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9:00am - 9:10am&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:10am - 9:25am&lt;br /&gt;
|'''Jonathon Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 9:40am&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute vision from an FDA-Industry perspective &lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 10:00am&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision&lt;br /&gt;
|-&lt;br /&gt;
!10:00am - 11:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10:00am - 10:20am&lt;br /&gt;
|'''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Why BCO/RAB updates&lt;br /&gt;
|-&lt;br /&gt;
|10:20am - 10:35am&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|10:35am - 10:50am &lt;br /&gt;
|'''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
|Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|10:50am - 11:00am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:00am - 11:20am &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:20am - 12:15am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11:20am - 11:35am&lt;br /&gt;
| UNCONFIRMED&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|11:35am - 11:50am&lt;br /&gt;
| '''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
| A computational framework for end-to-end clinical omics analysis: Single cell mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|11:50am - 12:05pm&lt;br /&gt;
|'''Jack Baker'''&amp;lt;small&amp;gt;Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Considerations for adoption from industry&lt;br /&gt;
|-&lt;br /&gt;
|12:05pm - 12:15pm&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!12:15pm - 1:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
!1:15pm - 4:10pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1:15pm - 1:30pm&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|1:30pm - 1:45pm&lt;br /&gt;
|'''Elaine Thompson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Vice President Bioinformatics, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO-CDISC: An emerging role for BioCompute: CDISC Standards for Cell and Gene Therapy Product (CGTP) Monitoring.&lt;br /&gt;
|-&lt;br /&gt;
|1:45pm - 2:00pm&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
|Extending BCO specification into a generic metamodel for computable data&lt;br /&gt;
|-&lt;br /&gt;
!2:00pm - 2:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:15pm - 2:30pm&lt;br /&gt;
|Regualtory Advisory Board representative&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|2:30pm - 2:50pm&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Velsera&lt;br /&gt;
|-&lt;br /&gt;
|2:50pm - 3:05pm&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:05pm - 3:20pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:20pm - 3:35pm&lt;br /&gt;
|'''Meznah Aloqalaa'''&amp;lt;small&amp;gt;Ph.D. Student, University of Manchester&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO and PRIMAD Provenance Models&lt;br /&gt;
|-&lt;br /&gt;
|3:35pm - 3:50pm&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Nextflow-BCO&lt;br /&gt;
|-&lt;br /&gt;
|3:50pm - 4:05pm&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
!4:05pm - 4:30pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:30pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |&amp;lt;big&amp;gt;Lightning talk and closing&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4:30pm - 4:45pm&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:45pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Elaine Thompson.jpg|thumb|200x200px|none]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Elaine E. Thompson, Ph.D.&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|none|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Jonathon Keeney.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Raja Mazumder.png|none|thumb|200x200px]]         &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Charles Hadley King.png|none|thumb|200x200px]]    &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/charles-hadley-king-942693a8/ Charles Hadley King]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jack Baker.png|center|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jack Baker&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;big&amp;gt;[https://www.linkedin.com/in/phillipjwebster/ Phil Webster]- Velsera&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=655</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=655"/>
		<updated>2024-03-22T18:55:44Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus) Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Speaker&lt;br /&gt;
!Content&lt;br /&gt;
|-&lt;br /&gt;
!9:00am - 10:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Introduction and Future for BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:00am - 9:10am&lt;br /&gt;
|'''Raja Mazumder'''&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:10am - 9:25am&lt;br /&gt;
|'''Jonathon Keeney'''&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 9:40am&lt;br /&gt;
|'''Vahan Simonyan'''&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute vision from an FDA-Industry perspective &lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 10:00am&lt;br /&gt;
| '''Peter Marks'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision&lt;br /&gt;
|-&lt;br /&gt;
!10:00am - 11:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Need for BCO at FDA&lt;br /&gt;
|-&lt;br /&gt;
|10:00am - 10:20am&lt;br /&gt;
|'''Mark Walderhaug'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Why BCO/RAB updates&lt;br /&gt;
|-&lt;br /&gt;
|10:20am - 10:35am&lt;br /&gt;
|'''Luis Santana-Quintero'''&lt;br /&gt;
&amp;lt;small&amp;gt;HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|10:35am - 10:50am &lt;br /&gt;
|'''Eric Donaldson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
|Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|10:50am - 11:00am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:00am - 11:20am &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:20am - 12:15am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Considerations for Adoption in Industry&lt;br /&gt;
|-&lt;br /&gt;
|11:20am - 11:35am&lt;br /&gt;
| UNCONFIRMED&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|11:35am - 11:50am&lt;br /&gt;
| '''Jun Luo'''&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
| A computational framework for end-to-end clinical omics analysis: Single cell mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|11:50am - 12:05pm&lt;br /&gt;
|'''Jack Baker'''&amp;lt;small&amp;gt;Scientist, Merck&amp;lt;/small&amp;gt;&lt;br /&gt;
|Considerations for adoption from industry&lt;br /&gt;
|-&lt;br /&gt;
|12:05pm - 12:15pm&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!12:15pm - 1:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
!1:15pm - 4:10pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Progress Towards Usability&lt;br /&gt;
|-&lt;br /&gt;
|1:15pm - 1:30pm&lt;br /&gt;
|'''Susan Gregurick'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|TBD&lt;br /&gt;
|-&lt;br /&gt;
|1:30pm - 1:45pm&lt;br /&gt;
|'''Elaine Thompson'''&lt;br /&gt;
&amp;lt;small&amp;gt;Vice President Bioinformatics, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO-CDISC: An emerging role for BioCompute: CDISC Standards for Cell and Gene Therapy Product (CGTP) Monitoring.&lt;br /&gt;
|-&lt;br /&gt;
|1:45pm - 2:00pm&lt;br /&gt;
|'''Guangzhi Sun'''&lt;br /&gt;
|Extending BCO specification into a generic metamodel for computable data&lt;br /&gt;
|-&lt;br /&gt;
!2:00pm - 2:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:15pm - 2:30pm&lt;br /&gt;
|RAB representative&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|2:30pm - 2:50pm&lt;br /&gt;
|'''Dennis Dean'''&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Velsera&lt;br /&gt;
|-&lt;br /&gt;
|2:50pm - 3:05pm&lt;br /&gt;
|'''Sam Westreich'''&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:05pm - 3:20pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:20pm - 3:35pm&lt;br /&gt;
|'''Meznah Aloqalaa'''&amp;lt;small&amp;gt;Ph.D. Student, University of Manchester&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO and PRIMAD Provenance Models&lt;br /&gt;
|-&lt;br /&gt;
|3:35pm - 3:50pm&lt;br /&gt;
|'''Ben Sherman'''&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Nextflow-BCO&lt;br /&gt;
|-&lt;br /&gt;
|3:50pm - 4:05pm&lt;br /&gt;
|'''Konstantinos Krampis'''&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
!4:05pm - 4:30pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:30pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Lightning talk and closing&lt;br /&gt;
|-&lt;br /&gt;
|4:30pm - 4:45pm&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:45pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Elaine Thompson.jpg|thumb|200x200px|none]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Elaine E. Thompson, Ph.D.&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|none|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Jonathon Keeney.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Raja Mazumder.png|none|thumb|200x200px]]         &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Charles Hadley King.png|none|thumb|200x200px]]    &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/charles-hadley-king-942693a8/ Charles Hadley King]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jack Baker.png|center|thumb|200x200px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jack Baker&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;big&amp;gt;[https://www.linkedin.com/in/phillipjwebster/ Phil Webster]- Velsera&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
	<entry>
		<id>https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=644</id>
		<title>BioCompute Conference and Workshop</title>
		<link rel="alternate" type="text/html" href="https://wiki.biocomputeobject.org/index.php?title=BioCompute_Conference_and_Workshop&amp;diff=644"/>
		<updated>2024-03-19T14:43:19Z</updated>

		<summary type="html">&lt;p&gt;Keeneyjg: /* Schedule */ Updated with titles&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&amp;lt;big&amp;gt;2024 BioCompute Conference and Workshop&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;big&amp;gt;This workshop provides an opportunity to learn about interoperability between platforms that host BioCompute Objects (BCOs), the FDA’s &amp;quot;Portal&amp;quot; for reading, writing and sharing BCOs, real world applications including intended use in regulatory submissions, and potential implementations, including the use of AI/ML. This conference will have perspectives from both FDA and industry around the use of BioCompute in regulatory submissions, challenges for implementation, and tools designed to work with the standard. Join us for an in-depth discussion of BCO standards and an opportunity to view other projects during our poster session.&amp;lt;/big&amp;gt;''  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Event Registration:''' [https://www.eventbrite.com/e/biocompute-objects-workshop-2024-tickets-700473915337?aff=oddtdtcreator Eventbrite]&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Date &amp;amp; Time:''' May 10th, 2024, 9 AM - 5 PM&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Location:''' Great Room, White Oak Campus, FDA center&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;big&amp;gt;'''&amp;lt;u&amp;gt;Getting there&amp;lt;/u&amp;gt;'''&amp;lt;/big&amp;gt; ====&lt;br /&gt;
'''&amp;lt;big&amp;gt;By Car&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Enter &amp;quot;FDA Building 1&amp;quot; in Google Maps, then follow NW Loop Rd to the closest visitor parking, once reach the T-section turn right onto Michelson Rd to vehicle security screening before parking on the White Oak campus. FDA circulator shuttles are available between visitor parking and Building 1. Refer to the [https://www.fda.gov/about-fda/visitor-information/visitor-parking-and-campus-map FDA] website for the campus map.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''By metro'''&lt;br /&gt;
'''Public buses:'''&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Ride On Bus [https://www.montgomerycountymd.gov/DOT-Transit/routesandschedules/allroutes/route022.html Route 22] - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BRT Flash Orange Route - stops at the Silver Spring (Red line) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus C8 - stops at the White Flint (Red line), Glenmont (Red Line), and College Park (Green line) Metro stations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K6 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Metro Bus K9 - stops at the Fort Totten (Red, Green, and Yellow lines) Metro station&amp;lt;/big&amp;gt;&lt;br /&gt;
'''&amp;lt;big&amp;gt;FDA shuttle to metro:&amp;lt;/big&amp;gt;'''&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-college-park-metro-station College Park Metro] (Green line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-glenmont-metro-station Glenmont Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-medical-center-metro-station Medical Center Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-shady-grove-metro-station Shady Grove Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-stop-location-silver-spring-metro-station Silver Spring Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;[https://www.fda.gov/about-fda/white-oak-campus-information/white-oak-shuttle-bus-location-twinbrook-metro-station Twinbrook Metro] (Red line)&amp;lt;/big&amp;gt;&lt;br /&gt;
* More FDA shuttle info can be found [https://www.fda.gov/media/92208/download?attachment here]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;Please go to the [https://www.fda.gov/about-fda/visitor-information/getting-fda FDA site] for more transportation options.&amp;lt;/big&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Abstract&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Documenting computational workflows has historically been a challenge for researchers and reviewers. Often, there are no clear guidelines for describing these workflows, leading to ad hoc definitions and descriptions that are insufficient for comprehension and reproducibility. BioCompute, an abbreviation for the IEEE standard 2791-2020, offers a structured framework for precisely yet adaptable describing workflows. A BioCompute Object (BCO) represents a workflow that adheres to this standard. This standard breaks down a workflow into its core components, aligning them with established data standards and ontologies. BioCompute significantly aids in streamlining workflow data, managing complexity across multiple versions, and enhancing reproducibility.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;As the field evolves, addressing regulatory concerns becomes paramount, necessitating a common language for all stakeholders. The BioCompute community, comprised of over 400 individuals, has crafted a framework that offers guidance without imposing undue burdens on sponsors or reviewers. To date, BCO has been embraced by three FDA centers, effectively reducing delays in regulatory submissions. An ongoing pilot project involving the BioCompute team, FDA, and industry sponsors aims to improve communication efficiency and fluidity during submission and review processes.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;The [https://www.biocomputeobject.org/ BioCompute Portal], the central platform for creating and submitting BCOs, has seen significant improvements in the past year, including Google and ORCID integration and an enhanced user interface. Furthermore, a new Portal instance at the FDA, along with four tools for authoring BCOs directly from various platforms (BCOnexus, Seven Bridges APP, the HIVE, and Galaxy platforms), and expanded documentation, make it easier to create, share, edit, and publish BCOs online. In addition, the FDA can retrieve BCOs from the public BCODB upon request, and with APIs and authentication tokens, users can directly submit to FDA portal API endpoints and interact with BCOs and their implementations seamlessly. All of the most up-to-date information about BioCompute will be introduced at the workshop and followed by a roundtable discussion to further improve the applicability of BioCompute from the FDA point of view and industry-wise.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Organization Committee&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt; ===&lt;br /&gt;
&amp;lt;big&amp;gt;Jonathon Kenney (GWU/Chair); Raja Mazumder (GWU); Mark Walderhaug (FDA); Luis Santana-Quintero(FDA); Charles Hadley King (GWU); Omar Serang (DNAnexus); Sam Westreich (DNAnexus) Dennis A. Dean, II (Velsera);  Phil Webster (Velsera); Kostis Karagiannis (Moderna)&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Workshop Topics&amp;lt;/big&amp;gt; ==&lt;br /&gt;
* &amp;lt;big&amp;gt;Updates and future for BioCompute&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Need for BCO at FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Considerations for Adoption in Industry&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Progress Towards Usability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCODB and Portal's use at the FDA&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO platform interoperability&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Exemplar workflows and real-world applications&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;BCO-Nextflow&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;Potential AI/ML-related implementations&amp;lt;/big&amp;gt;&lt;br /&gt;
* &amp;lt;big&amp;gt;FAQ session &amp;amp; Roundtable discussion&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Poster Session&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;Participants are encouraged to submit a poster abstract by April 15th, 11:59 PM (EDT). Posters should describe a computational pipeline or topic related to BioCompute. Up to 5 posters will have their workflows converted into a BCO by the BCO team and published in the BCO Portal, and will be offered a 5-minute lightning talk at the end of the conference. All posters must be printed before the workshop and set up at the start of the event.&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Abstract'''&amp;lt;/big&amp;gt;:  &amp;lt;big&amp;gt;Any computational workflow of interest, or topic related to BCOs&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Poster Content''': Posters should highlight or describe a workflow (either in progress or one already in use) and the way it is used.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Size''': poster sizes can be up to 4' tall x 6' wide.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Submission Portal''': click [https://docs.biocomputeobject.org/submit/ here].&amp;lt;/big&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Schedule&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Speaker&lt;br /&gt;
!Content&lt;br /&gt;
|-&lt;br /&gt;
!9:00am - 10:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Introduction and Future for BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:00am - 9:10am&lt;br /&gt;
|Raja Mazumder&lt;br /&gt;
&amp;lt;small&amp;gt;Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Introduction&lt;br /&gt;
|-&lt;br /&gt;
|9:10am - 9:25am&lt;br /&gt;
|Jonathon Keeney&lt;br /&gt;
&amp;lt;small&amp;gt;Research Assistant Professor, George Washington University&amp;lt;/small&amp;gt;&lt;br /&gt;
|Future of BioCompute&lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 9:40am&lt;br /&gt;
|Vahan Simonyan&lt;br /&gt;
&amp;lt;small&amp;gt;CSO, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BioCompute vision from an FDA-Industry perspective &lt;br /&gt;
|-&lt;br /&gt;
|9:25am - 10:00am&lt;br /&gt;
| Peter Marks&lt;br /&gt;
&amp;lt;small&amp;gt;Director, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Vision&lt;br /&gt;
|-&lt;br /&gt;
!10:00am - 11:00am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Need for BCO at FDA&lt;br /&gt;
|-&lt;br /&gt;
|10:00am - 10:20am&lt;br /&gt;
|Mark Walderhaug&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Director for Risk Assessment, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Why BCO/RAB updates&lt;br /&gt;
|-&lt;br /&gt;
|10:20am - 10:35am&lt;br /&gt;
|Luis Santana-Quintero&lt;br /&gt;
&amp;lt;small&amp;gt;Staff Fellow, HIVE lead, CBER, FDA&amp;lt;/small&amp;gt;&lt;br /&gt;
|Computational Reviews at CBER&lt;br /&gt;
|-&lt;br /&gt;
|10:35am - 10:50am &lt;br /&gt;
|Eric Donaldson&lt;br /&gt;
&amp;lt;small&amp;gt;Clinical Virology Reviewer&amp;lt;/small&amp;gt;&lt;br /&gt;
|Perspectives from a Reviewer: High Throughput Sequencing Data Challenges in FDA Regulatory Review&lt;br /&gt;
|-&lt;br /&gt;
|10:50am - 11:00am&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!11:00am - 11:20am &lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and poster review''&lt;br /&gt;
|-&lt;br /&gt;
!11:20am - 12:15am&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Considerations for Adoption in Industry&lt;br /&gt;
|-&lt;br /&gt;
|11:20am - 11:35am&lt;br /&gt;
| UNCONFIRMED&lt;br /&gt;
|Considerations to adoption at Moderna&lt;br /&gt;
|-&lt;br /&gt;
|11:35am - 11:50am&lt;br /&gt;
| Jun Luo&lt;br /&gt;
&amp;lt;small&amp;gt;Data Scientist, Novo Nordisk&amp;lt;/small&amp;gt;&lt;br /&gt;
| A computational framework for end-to-end clinical omics analysis: Single cell mechanism of action study in chronic diseases&lt;br /&gt;
|-&lt;br /&gt;
|11:50am - 12:05pm&lt;br /&gt;
|UNCONFIRMED&lt;br /&gt;
|Considerations to adoption from industry&lt;br /&gt;
|-&lt;br /&gt;
|12:05pm - 12:15pm&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''Discussion''&lt;br /&gt;
|-&lt;br /&gt;
!12:15pm - 1:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Lunch &amp;amp; Poster Session''&lt;br /&gt;
|-&lt;br /&gt;
!1:15pm - 4:10pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Progress Towards Usability&lt;br /&gt;
|-&lt;br /&gt;
|1:15pm - 1:30pm&lt;br /&gt;
|Susan Gregurick&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Data Science, NIH&amp;lt;/small&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|1:30pm - 1:45pm&lt;br /&gt;
|Elaine Thompson&lt;br /&gt;
&amp;lt;small&amp;gt;Vice President Bioinformatics, Embleema&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO-CDISC: An emerging role for BioCompute: CDISC Standards for Cell and Gene Therapy Product (CGTP) Monitoring.&lt;br /&gt;
|-&lt;br /&gt;
|1:45pm - 2:00pm&lt;br /&gt;
|UNCONFIRMED &lt;br /&gt;
|ISO publication&lt;br /&gt;
|-&lt;br /&gt;
!2:00pm - 2:15pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
|2:15pm - 2:30pm&lt;br /&gt;
|RAB representative&lt;br /&gt;
|Forthcoming Guidance for BCO Submission&lt;br /&gt;
|-&lt;br /&gt;
|2:30pm - 2:50pm&lt;br /&gt;
|Dennis Dean&lt;br /&gt;
&amp;lt;small&amp;gt;Director of Translational Sciences, Velsera&amp;lt;/small&amp;gt;&lt;br /&gt;
|Velsera&lt;br /&gt;
|-&lt;br /&gt;
|2:50pm - 3:05pm&lt;br /&gt;
|Sam Westreich&lt;br /&gt;
&amp;lt;small&amp;gt;Sr. Scientific Program Manager, DNAnexus&amp;lt;/small&amp;gt;&lt;br /&gt;
|DNAnexus: Democratizing access to BCOs with the BCOnexus Platform-Free Editor&lt;br /&gt;
|-&lt;br /&gt;
!3:05pm - 3:20pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review'' &lt;br /&gt;
|-&lt;br /&gt;
|3:20pm - 3:35pm&lt;br /&gt;
|UNCONFIRMED&lt;br /&gt;
|BCO-RO&lt;br /&gt;
|-&lt;br /&gt;
|3:35pm - 3:50pm&lt;br /&gt;
|Ben Sherman&lt;br /&gt;
&amp;lt;small&amp;gt;Developer, Seqera Labs&amp;lt;/small&amp;gt;&lt;br /&gt;
|Nextflow-BCO&lt;br /&gt;
|-&lt;br /&gt;
|3:50pm - 4:05pm&lt;br /&gt;
|Konstantinos Krampis&lt;br /&gt;
&amp;lt;small&amp;gt;Associate Professor of Biology and Computer Science, CUNY&amp;lt;/small&amp;gt;&lt;br /&gt;
|BCO in AI: Leveraging Large Language Models (aka ChatGPT) for Biocompute Object Generation in Bioinformatics&lt;br /&gt;
|-&lt;br /&gt;
!4:05pm - 4:30pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |''Break and Poster review''&lt;br /&gt;
|-&lt;br /&gt;
!4:30pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Lightning talk and closing&lt;br /&gt;
|-&lt;br /&gt;
|4:30pm - 4:45pm&lt;br /&gt;
|Chosen speakers&lt;br /&gt;
|Poster lightning talks&lt;br /&gt;
|-&lt;br /&gt;
!4:45pm - 5:00pm&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |Closing&lt;br /&gt;
|}&lt;br /&gt;
== &amp;lt;big&amp;gt;Confirmed Presenters&amp;lt;/big&amp;gt; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
|[[File:Sam Westreich.jpg|thumb|204x204px|none]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/sam-westreich/ Sam Westreich]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Konstantinos Krampis.jpg|thumb|none]]     &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Konstantinos Krampis&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Elaine Thompson.jpg|thumb|200x200px|none]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Elaine E. Thompson, Ph.D.&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Image001.png|none|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Eric Donaldson&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Jonathon Keeney.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/jonathon-keeney/ Jonathon Keeney]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Raja Mazumder.png|none|thumb|200x200px]]         &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Raja Mazumder&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Charles Hadley King.png|none|thumb|200x200px]]    &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;[https://www.linkedin.com/in/charles-hadley-king-942693a8/ Charles Hadley King]&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt; &lt;br /&gt;
|[[File:Dennis Dean.png|center|thumb|200x200px]]          &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Dennis A. Dean, II&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vahan Simonyan.png|none|thumb|200x200px]]      &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Vahan Simonyan&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Luis.jpg|center|thumb|200x200px]]        &amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Luis Santana-Quintero&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|[[File:Jun Luo.png|none|thumb|203x203px]]&amp;lt;big&amp;gt;&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;Jun Luo&amp;lt;/div&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;big&amp;gt;[https://www.linkedin.com/in/phillipjwebster/ Phil Webster]- Velsera&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;big&amp;gt;Contact Us&amp;lt;/big&amp;gt; ==&lt;br /&gt;
&amp;lt;big&amp;gt;For questions about registration or general inquiries about  BioCompute, please go to [https://docs.biocomputeobject.org/contact/ Contact Us] or refer to our [https://wiki.biocomputeobject.org/index.php?title=FAQs# FAQs]&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Keeneyjg</name></author>
	</entry>
</feed>