BasicQuery
#
- class biotite.database.rcsb.BasicQuery(term)[source]#
Bases:
SingleQuery
A text query for searching for a given term across all available fields.
- Parameters:
- termstr
The search term. If the term contains multiple words, the query will return results where the entire term is present. The matching is not case-sensitive. Logic combinations of terms is described here.
Examples
>>> query = BasicQuery("tc5b") >>> print(sorted(search(query))) ['1L2Y', '8ANG', '8ANH', '8ANI', '8ANM', '8QWW']