Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Cloud Infrastructure / Google / Cloud Life Sciences API
Cloud Life Sciences API logo

Google Cloud Life Sciences API

Browse all Google APIs
✓ Official Vendor SpecCloud InfrastructureComputeoauth25 EndpointsREST

For Agents

Run container-based genomics and bioinformatics pipelines on Google Cloud and track or cancel the resulting long-running operations.

Use for: Run a genomics analysis pipeline on Google Cloud, List all running Cloud Life Sciences operations in europe-west2, Get the status of a specific pipeline operation, Cancel a long-running pipeline that is no longer needed

Not supported: Does not store genomic data, train ML models, or expose Compute Engine VM management — use only to run, list, get, and cancel container-based pipeline operations.

The Cloud Life Sciences API runs container-based pipelines on Google Cloud, primarily for genomics, biology, and other life sciences batch workloads. It exposes a pipelines:run operation that schedules a Pipeline definition onto a Compute Engine VM and a set of operations endpoints to list, get, and cancel the resulting long-running operations. Locations can be discovered via the locations:list endpoint to choose a regional endpoint for compliance.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Cloud Life Sciences API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Cloud Life Sciences API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Cloud Life Sciences API.

Run a containerized pipeline by submitting a Pipeline definition to pipelines:run

List long-running operations to track pipeline progress in a region

Get the status, metadata, and result of a single pipeline operation

Cancel a running pipeline operation

List supported regional locations to choose a compliant endpoint

Use Cases

Patterns agents use Cloud Life Sciences API for, with concrete tasks.

★ Run a genomics variant-calling pipeline

Bioinformatics teams package GATK or DeepVariant tools into a container and submit them via POST /v2beta/{+parent}/pipelines:run. Cloud Life Sciences allocates a Compute Engine VM with the requested machine type and disks, runs the pipeline, and returns a long-running operation that the team can poll for status.

Submit a Pipeline with one Action running gcr.io/myproj/deepvariant:latest and read the returned operation name.

Operation polling and status reporting

Long-running pipelines complete asynchronously, so a workflow orchestrator must poll GET /v2beta/{+name} until done becomes true. The metadata block reports event timelines and any errors so an agent can report progress to the data scientist or trigger downstream steps.

Poll GET /v2beta/{+name} every 30 seconds until done=true, then return metadata.events for human review.

Cancel a runaway pipeline

When a pipeline takes longer than expected or was launched against the wrong inputs, POST /v2beta/{+name}:cancel halts the underlying VM and stops billing. An agent watching cost or run time can call cancel and clean up associated GCS scratch space without manual intervention.

Call POST /v2beta/{+name}:cancel for an operation older than 12 hours and confirm the response is empty.

Region-aware pipeline submission

Some workloads must run in specific regions for residency or pricing reasons. GET /v2beta/{+name}/locations enumerates supported regions so an agent can pick, for example, europe-west2 to keep patient-derived data in the EU before submitting the pipeline.

List locations under projects/{p} and pick europe-west2 as the parent for the next pipelines:run call.

Agent-orchestrated genomics workflow via Jentic

An analysis agent receiving a sample manifest can build the right Pipeline definition, submit it through Jentic, and poll the operation until completion. Jentic surfaces all five Life Sciences operations so the agent does not need a Google Cloud client library to run a multi-step workflow.

Run google_lifesciences_run_pipeline with a Pipeline JSON, then poll until done=true and return metadata.events.

Key Endpoints

5 endpoints — the cloud life sciences api runs container-based pipelines on google cloud, primarily for genomics, biology, and other life sciences batch workloads.

METHOD

PATH

DESCRIPTION

POST

/v2beta/{+parent}/pipelines:run

Run a containerized pipeline

GET

/v2beta/{+name}

Get a long-running operation by resource name

GET

/v2beta/{+name}/operations

List operations within a parent location

POST

/v2beta/{+name}:cancel

Cancel a long-running pipeline operation

GET

/v2beta/{+name}/locations

List supported regional locations

POST

/v2beta/{+parent}/pipelines:run

Run a containerized pipeline

GET

/v2beta/{+name}

Get a long-running operation by resource name

GET

/v2beta/{+name}/operations

List operations within a parent location

POST

/v2beta/{+name}:cancel

Cancel a long-running pipeline operation

GET

/v2beta/{+name}/locations

List supported regional locations

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Service account JSON keys with Life Sciences IAM roles are stored encrypted in the Jentic vault. Agents receive a short-lived OAuth 2.0 access token scoped to cloud-platform at call time and never see the raw JSON key.

Intent-based discovery

Intent-based discovery

Agents search Jentic with intents like 'run a genomics pipeline' or 'cancel a long running operation' and Jentic returns the matching v2beta endpoint with the parent and name path templates already documented.

Time to first call

Time to first call

Direct integration: 1-2 days to set up the service account, design the Pipeline JSON, and implement long-running operation polling. Through Jentic: under 1 hour — search, load, execute, poll.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Compute Engine API

→

Compute Engine provisions individual VMs; Life Sciences orchestrates containerized pipelines on top

Use Compute Engine when the agent needs full VM control; use Life Sciences when it just needs to run a container pipeline.

Alternative

Cloud Build API

→

Cloud Build runs container-based build steps; Life Sciences runs container-based scientific workloads

Choose Cloud Build for software CI/CD; choose Life Sciences for genomics and bioinformatics pipelines.

Complementary

Cloud Logging API

→

Cloud Logging captures stdout and stderr from pipeline actions

Pair with Life Sciences when an agent needs to inspect pipeline logs alongside operation status.

FAQs

Specific to using Cloud Life Sciences API through Jentic.

What authentication does the Cloud Life Sciences API use?

OAuth 2.0 with the https://www.googleapis.com/auth/cloud-platform scope, typically using a Google Cloud service account that has lifesciences.workflows.run and operations.cancel IAM permissions. Through Jentic the service account JSON is encrypted in the vault and the agent receives only a short-lived access token.

Is Cloud Life Sciences being deprecated?

Google announced sunset of Cloud Life Sciences with end of support on July 8, 2025. Existing v2beta workflows continue to run for now, and Google recommends migrating new workloads to Batch or GKE. This API is still useful for legacy genomics pipelines and as a reference.

What are the rate limits for the Cloud Life Sciences API?

The default per-project quota is 1,000 pipelines:run requests per day and 60 operations.list requests per minute. Compute Engine quotas (vCPUs, persistent disk) bound how many pipelines can run concurrently.

How do I run a pipeline through Jentic?

Run jentic search 'run a containerized pipeline on google cloud' to find POST /v2beta/{+parent}/pipelines:run, jentic load for the Pipeline schema, then jentic execute with a body containing actions, resources, and timeout. Jentic returns the long-running operation name for polling.

How do I check if a pipeline has finished?

Poll GET /v2beta/{+name} with the operation name returned by pipelines:run. The response includes a done boolean — when true, either response or error is set, and the metadata.events array contains the timeline of pipeline steps.

What does Cloud Life Sciences cost?

The API itself has no per-call charge. You pay for the underlying Compute Engine VMs (vCPU, memory, GPUs) and persistent disks the pipeline uses, billed at standard Compute Engine rates.

GET STARTED

Start building with Cloud Life Sciences API

Explore with Jentic
View OpenAPI Document