Welcome to VFB_connect #140
Robbie1977
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
VFB Connect: Quickstart Guide
VFB Connect is a Python package for interacting with the Virtual Fly Brain (VFB) database. This guide will walk you through the basics of using VFB Connect, including installation, querying terms, and working with the results.
Installation
To install VFB Connect and its dependencies, run the following commands:
Getting Started
Importing VFB Connect
Begin by importing the
vfb
object from thevfb_connect
package. This object is your gateway to querying the VFB database.Querying Terms
You can query the VFB database for specific terms using their IDs. The supported IDs include anatomical entities, dataset IDs, and ontology IDs (e.g., FBbt).
Single Term Query
Retrieve a term by its ID and get a summary of the term:
Multiple Term Query
Retrieve multiple terms and get their summaries in a pandas DataFrame:
Inspecting Term Properties
You can inspect the properties and methods available for a term object:
Accessing Xrefs
Retrieve cross-references for a term:
Working with External IDs
You can query terms using external IDs from various databases:
Exploring Terms
Explore terms for their subparts and related neuron types:
Working with Instances
Retrieve and work with instances of a term:
Sorting and Filtering
Sort parent terms and query transcriptomic profiles:
Exploring VFB Connect Methods
To explore the available methods in VFB Connect, use the
dir
function:You can also use the
help
function for detailed information on specific methods:Conclusion
VFB Connect provides a robust set of tools for querying and interacting with the VFB database. This guide covers the basics, including installation, querying terms, and working with results. For more advanced usage and additional features, refer to the VFB Connect API Documentation and explore the methods available in the package. Happy querying!
Beta Was this translation helpful? Give feedback.
All reactions