One platform for scientific data analysis.
Emit new event when a new run is created in Seqera. See the documentation
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Emit new event for each new or modified record in a table
Creates a new compute environment in Seqera Tower. See the documentation
Creates a new pipeline action in Seqera. See the documentation
The Seqera API serves as a connection point for handling complex data pipeline and workflow orchestration tasks within the life sciences domain. With this API, you can manage workflows, monitor pipeline executions, and control job submissions. Leveraging Pipedream, you can seamlessly integrate Seqera with various services to automate processes, react to pipeline events, or synchronize data across platforms, thus enhancing efficiency in bioinformatics analysis.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
seqera: {
type: "app",
app: "seqera",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tower.nf/user-info`,
headers: {
Authorization: `Bearer ${this.seqera.$auth.api_token}`,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})