You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: 15-tutorial.ipynb
+2-2
Original file line number
Diff line number
Diff line change
@@ -11,14 +11,14 @@
11
11
"cell_type": "markdown",
12
12
"metadata": {},
13
13
"source": [
14
-
"This tutorial will help you utilise the module to get details about the data model of various mines. These are additional examples, besides the ones covered [here](http://intermine.org/intermine-ws-python/intermine.html#module-intermine.model).Each class (data type) has information containing references to other objects in the data model, collections of references or attribute details."
14
+
"This tutorial will help you utilise the module to get details about the data model of various mines. These are additional examples, besides the ones covered [here](http://intermine.org/intermine-ws-python/intermine.html#module-intermine.model).Each class (data type) has information containing references to other objects in the data model, collections of references or attribute details."
15
15
]
16
16
},
17
17
{
18
18
"cell_type": "markdown",
19
19
"metadata": {},
20
20
"source": [
21
-
"Let's begin with something basic, say you want to see all the fields a data type contains (including all Attributes, References and Collections listed alphabetically),then-"
21
+
"Let's begin by showing all the fields a data type contains (including all Attributes, References and Collections listed alphabetically),then-"
"# Intermine-Python: Tutorial 12: More about Queries"
8
+
]
9
+
},
10
+
{
11
+
"cell_type": "markdown",
12
+
"metadata": {},
13
+
"source": [
14
+
"Welcome to your twelfth intermine-python tutorial. "
15
+
]
16
+
},
17
+
{
18
+
"cell_type": "markdown",
19
+
"metadata": {},
20
+
"source": [
21
+
"This tutorial will cover some more functionalities of a query. Queries are the basis of all research in InterMine and being able to manage them more effectively is always useful. "
"Suppose, the query is not as simple as a strict cumulative filter and the user wants combinations of constraints. For example, the user wants all genes such that the gene symbol is either ‘eve’ or ‘zen’. This can be incorporated in the following way using set_logic: "
"This tutorial will tell you about the Query Manager and how to it can be used to make better use of queries. We hope at this stage you have the 'intermine' package installed "
15
+
]
16
+
},
17
+
{
18
+
"cell_type": "markdown",
19
+
"metadata": {},
20
+
"source": [
21
+
"We start by importing the module from InterMine package. "
22
+
]
23
+
},
24
+
{
25
+
"cell_type": "code",
26
+
"execution_count": null,
27
+
"metadata": {},
28
+
"outputs": [],
29
+
"source": [
30
+
"from intermine import query_manager as qm"
31
+
]
32
+
},
33
+
{
34
+
"cell_type": "markdown",
35
+
"metadata": {},
36
+
"source": [
37
+
"The next step will be to access the account whose query options we want to manage"
0 commit comments