1
+
2
+ CHANGES IN VERSION 2.66.0
3
+ -------------------------
4
+
5
+ INTERNAL CHANGES
6
+
7
+ o Coding style throughout the package has been harmonized using the air tool.
8
+ Contributors using RStudio, Positron or VS Code should have their code styled
9
+ automatically on save.
10
+
1
11
CHANGES IN VERSION 2.64.0
2
12
-------------------------
3
13
4
14
BUG FIXES
5
15
6
- o Version 1.10 of {httr2} changed how URLs are parsed, and this broke
16
+ o Version 1.10 of {httr2} changed how URLs are parsed, and this broke
7
17
some biomaRt functionality. This has been patched.
8
18
(Backported to biomaRt 2.62.1)
9
19
@@ -13,42 +23,42 @@ CHANGES IN VERSION 2.62.0
13
23
USER VISIBLE CHANGES
14
24
15
25
o Several deprecated functions are now defunct.
16
-
26
+
17
27
BUG FIXES
18
28
19
29
o Results returned from BioMart queries will be read using Latin-1 encounding
20
30
if the default fails. Reported in https://support.bioconductor.org/p/9158844/
21
31
(Backported to 2.60.1)
22
32
o Fixed issue when only one dataset was listed in a Mart instance, causing
23
- data.frame dimensions to be dropped. This broke connectivity to
33
+ data.frame dimensions to be dropped. This broke connectivity to
24
34
https://parasite.wormbase.org. (Backported to 2.60.1)
25
-
35
+
26
36
CHANGES IN VERSION 2.60.0
27
37
-------------------------
28
38
29
39
USER VISIBLE CHANGES
30
40
31
- o listEnsemblGenomes() and useEnsemblGenomes() now have a host argument,
32
- allowing you to select an Ensembl Genomes archive site. (Thanks to Hervé Pagès
41
+ o listEnsemblGenomes() and useEnsemblGenomes() now have a host argument,
42
+ allowing you to select an Ensembl Genomes archive site. (Thanks to Hervé Pagès
33
43
@hpages for the suggestion: https://github.com/grimbough/biomaRt/issues/93)
34
44
o The 'curl' argument to getBM() has been deprecated as it is no longer
35
45
applicable and doesn't do anything.
36
-
46
+
37
47
INTERNAL CHANGES
38
48
39
49
o Removed dependency on XML package and switched all functionality to xml2
40
- o Swiched from httr to httr2 package for submitting queries to BioMart
50
+ o Swiched from httr to httr2 package for submitting queries to BioMart
41
51
servers.
42
52
43
53
CHANGES IN VERSION 2.58.0
44
54
-------------------------
45
55
46
56
USER VISIBLE CHANGES
47
57
48
- o getSequence() will now provide a more informative error message if
58
+ o getSequence() will now provide a more informative error message if
49
59
requesting a flanking sequence and not provided with an upstream or downstream
50
60
range.
51
- o Remove references to the uswest mirror, which has now been retired
61
+ o Remove references to the uswest mirror, which has now been retired
52
62
(https://www.ensembl.info/2023/01/13/retirement-of-ensembl-us-west-aws-mirror/)
53
63
54
64
CHANGES IN VERSION 2.56.0
@@ -57,7 +67,7 @@ CHANGES IN VERSION 2.56.0
57
67
BUG FIXES
58
68
59
69
o Fix problem when multiple cache entries with the same ID could
60
- be created. (Thanks to Hervé Pagès & Henrik Bengtsson for independent
70
+ be created. (Thanks to Hervé Pagès & Henrik Bengtsson for independent
61
71
reports of this issue.)
62
72
o bmRequest() will now respect the setting in options("timeout")
63
73
@@ -76,7 +86,7 @@ CHANGES IN VERSION 2.50.0
76
86
77
87
MINOR CHANGES
78
88
79
- o useMart() and listMarts() will warn users if using http to access
89
+ o useMart() and listMarts() will warn users if using http to access
80
90
Ensembl. https will be enforced by Ensembl from late 2021.
81
91
82
92
BUG FIXES
@@ -105,32 +115,32 @@ BUG FIXES
105
115
sequences being returned from a query.
106
116
o getBM() would fail if it found a cache entry, but the file was corrupted.
107
117
Invalid entries are now detected and deleted if encountered.
108
-
118
+
109
119
CHANGES IN VERSION 2.46.0
110
120
-------------------------
111
121
112
122
BUG FIXES
113
123
114
124
o getLDS() now detects if trying to use datasets from different Marts
115
125
and reports this to the user.
116
-
126
+
117
127
118
128
CHANGES IN VERSION 2.42.0
119
129
-------------------------
120
130
121
131
NEW FEATURES
122
132
123
133
o The results of queries will now be cached, and if repeated queries
124
- are detected the results are loaded from disk.
125
-
134
+ are detected the results are loaded from disk.
135
+
126
136
MINOR CHANGES
127
137
128
- o Ensembl users will be redirected to their closest mirror unless the
138
+ o Ensembl users will be redirected to their closest mirror unless the
129
139
host argument is explicitly provided. In this case the defined value
130
140
will be enforced.
131
141
o Unused argument 'ssl.verifypeer' removed from listMarts() and useMarts().
132
142
o RCurl removed from package dependecies.
133
-
143
+
134
144
BUG FIXES
135
145
136
146
o Improvements made to selecting the correct port when using http
@@ -143,18 +153,18 @@ CHANGES IN VERSION 2.36.0
143
153
144
154
BUG FIXES
145
155
146
- o Patched problem returning the list of available datasets, if the
156
+ o Patched problem returning the list of available datasets, if the
147
157
description of one or more datasets included an apostrophe (introduced
148
158
with new primate species in Ensembl).
149
159
o Caught scenario where ensemblRedirect=FALSE was still being ignored.
150
- o Changed query submission when redirection is detected to cope with
160
+ o Changed query submission when redirection is detected to cope with
151
161
apparently new behaviour of the Ensembl mirrors.
152
-
162
+
153
163
MINOR CHANGES
154
164
155
165
o Increase query timeout limit to 5 minutes.
156
-
157
-
166
+
167
+
158
168
CHANGES IN VERSION 2.34.0
159
169
-------------------------
160
170
@@ -168,9 +178,9 @@ BUG FIXES
168
178
169
179
o The Ensembl BioMart server doesn't always respond well if queries with
170
180
more than 500 filter values are submitted. If a query that exceed this is
171
- detect biomaRt will now submit the query in batches and concatonate the
181
+ detect biomaRt will now submit the query in batches and concatonate the
172
182
result when completed.
173
-
183
+
174
184
MINOR CHANGES
175
185
176
186
o You can now provide a host with 'http://' at the start, or a trailing
0 commit comments