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
Hi,
With the new versions of Julia, you need to do the following modification in the Query.jl file
(It specifies that the file is read into a DataFrame)
function execute(q::Query)
query = HTTP.URIs.escapeuri(string(q.xdoc))
r = HTTP.get(string(BIOMART_URL, "?query=", query)) CSV.read(r.body, DataFrames.DataFrame, delim = '\t')
end
great package, by the way.
Irene
The text was updated successfully, but these errors were encountered:
@itcosyne thanks for the report, it should be fixed now (you have to do ]up in the package manager). I also cleaned up a few things, I might register this package actually.
Hi,
With the new versions of Julia, you need to do the following modification in the Query.jl file
(It specifies that the file is read into a DataFrame)
function execute(q::Query)
query = HTTP.URIs.escapeuri(string(q.xdoc))
r = HTTP.get(string(BIOMART_URL, "?query=", query))
CSV.read(r.body, DataFrames.DataFrame, delim = '\t')
end
great package, by the way.
Irene
The text was updated successfully, but these errors were encountered: