Tell us what you think of the ENA browser? (2024)

News:Tell us what you think of the ENA browser?

1

Entering edit mode

7.8 years ago

Laura ★ 1.8k

We would like to improve the browsing services that the ENA provides. Your feedback on how you use the service would be greatly appreciated.

There are two surveys (neither should take you more than 5 minutes)

  1. The ENA Browser in general: https://ebiux.typeform.com/to/fe319r
  2. The ENA Advanced Search service: https://ebiux.typeform.com/to/bLxnM7

Please let us know how you use the service and what we could do to make your tasks easier.

thanks

Laura

ena • 3.6k views

ADD COMMENTlink updated 16 months ago by Ram 44k • written 7.8 years ago by Laura ★ 1.8k

5

Entering edit mode

7.8 years ago

Istvan Albert 101k

I think you should provide a tool to search ENA the same way like Entrez Direct does.

The simplicity of being able to do simply do a:

efetch -db nucleotide -id AF086833 -format genbank

or

esearch -db sra -query PRJNA257197 | efetch -format runinfo > runinfo.txt

creates a massive advantage for NCBI when it comes my choice of downloading data or creating reusable piplines.

In my opinion scientists that write new software that interacts with existing data are the ones driving innovation.

ADD COMMENTlink 7.8 years ago by Istvan Albert 101k

Entering edit mode

In context of automating pipelines it would be an essential/useful addition, no argument there.

Having an additional option is always great but what information can one get from ENA that can't be found using Entrez direct (that is a real question :) )?

Sometimes having multiple options (that do more or less the same thing) confuses (new) users and becomes a matter of personal preference for educators.

ADD REPLYlink 7.8 years ago by GenoMax 144k

2

I believe that ENA has richer set of annotations than NCBI - or at least better organized and more in tune with what biologists want. It is just not easy to get to it if you don't want to use a web browser.

There is a web API but even I found that to be too complicated and too low level - though I am not shy about using command line.

ADD REPLYlink 7.8 years ago by Istvan Albert 101k

Entering edit mode

The ENA has programmatic query services

http://www.ebi.ac.uk/ena/browse/programmatic-access

For searching the catalogue there are a number of rest end points

http://www.ebi.ac.uk/ena/browse/search-rest

thanks

ADD REPLYlink 7.8 years ago by Laura ★ 1.8k

Entering edit mode

neither of which is similar to what I have described -

FWIW I don't consider the link below a useful programmatic access (taken from one of the resources that you mention).

http://www.ebi.ac.uk/ena/data/warehouse/search?query=%22%28instrument_model%3D%22Illumina%20HiSeq%202000%22%20OR%20instrument_model%3D%22Illumina%20HiSeq%201000%22%20OR%20instrument_model%3D%22Illumina%20HiSeq%202500%22%29%20AND%20library_layout%3D%22PAIRED%22%20AND%20library_source%3D%22TRANSCRIPTOMIC%22%22&result=read_run&display=xml&download=xml

As a matter of that that is really what would make the ENA more useful. Instead of obscure lengthy links having a tool that builds us these links.

That is what Entrez Direct does.

ADD REPLYlink 7.8 years ago by Istvan Albert 101k

Entering edit mode

As mentioned in the post below, yes we have much simpler queries for programmatically fetching data and performing text searches, but yes the advanced search is complicated. Unfortunately there is no easy way to get around this when wanting to target search terms to specific fields within a record.

We are however wanting to start offering downloadable scripts for performing common actions within ENA next year, therefore this feedback is valuable. If you have key things that you feel these scripts should do, please feel free to start posting them here and we'll see what we can do.

ADD REPLYlink 7.8 years ago by Nicole ▴ 10

Entering edit mode

This is something that got clarified in my own mind while writing the Biostar Handbook, teaching courses and observing how people interact with and work with bioinformatics data.

The graphical interfaces such as ENA interfaces are good to explore data but completely inappropriate to reproduce results or to communicate with another fellow scientist of what has actually been done.

https://read.biostarhandbook.com/

In the whole book, which is now clocking in at more than 500 pages there is not a single instance where we would access data via GUI via a GUI interface - and it works like a charm. And I think that is a the right way to go about it!

The main point I am trying to make is we should use the browser to figure out what is there but then there absolutely needs to be a way to get the same information in simple and unambiguous way that allows the users to go on their own explorations.

A lot is made about reproducible research (or lack thereof) and one key component to that is well defined data access. Lengthy URLs that wrap around many rows and are full of weird characters in them are not a good solution - that is impossible to parse visually or to explain to others.

My opinion is that, having a well documented and simple programmatic interface will be the deciding factor in choosing one resource over the other.

ADD REPLYlink 7.8 years ago by Istvan Albert 101k

Entering edit mode

We have now announced some new tools for retrieving data from ENA. This includes one that allows you to download sequences more easily as requested here. Please see our news item more more info: http://www.ebi.ac.uk/about/news/service-news/new-tools-download-data-ena

ADD REPLYlink 7.2 years ago by Nicole ▴ 10

1

Entering edit mode

7.8 years ago

cochrane ▴ 10

Yes - lots of services available from EMBL-EBI.

For retrieval:curl "http://www.ebi.ac.uk/ena/data/view/<accession>&display=text" will retrieve any record given the accession.e.g. curl "http://www.ebi.ac.uk/ena/data/view/AF086833&display=text"This accepts ranges and lists and gives a number of format options for different data types. See http://www.ebi.ac.uk/ena/browse/data-retrieval-rest#retrieval_single_identifier for more details.

For search:There is an interactive interface that can be used to build up queries at http://www.ebi.ac.uk/ena/data/warehouse/search. The 'Search query' box shows a search being built up as you fill in fields and you can edit directly. Based on this, you can pull the whole thing out into a standard REST call...

Full details at http://www.ebi.ac.uk/ena/browse/search-rest.

ADD COMMENTlink 7.8 years ago by cochrane &utrif; 10

Entering edit mode

I think the main point here is to build a command line tool like eutils which builds these URL's automagically without the user having to type even this small string in.

efetch -db nucleotide -id AF086833 -format genbank is much simpler to remember/teach than http://www.ebi.ac.uk/ena/data/view/AF086833&display=text.

Don't get us wrong. We all appreciate great job you guys do. We always want more :)

ADD REPLYlink 7.7 years ago by GenoMax 144k

Entering edit mode

Hi genomax2 do you have a link to this Ensembl eutils project/discussion? As someone who is part of the Ensembl project I'm not aware of an active project to develop such a tool. However it sounds like an interesting idea for sure.

ADD REPLYlink 7.7 years ago by ayates &utrif; 60

Entering edit mode

I was doing a forward looking speculation based on this quote from @Nicole's post above :)

We are however wanting to start offering downloadable scripts for performing common actions within ENA next year

Edit: Since this sounds like an idea equivalent to Entrez eutils I should have referred to such a solution, Ensembl ENA eutils.

I hope they materialize at some point in future though. It always comes down to limited resources and how to distribute them We promise to be patient while you consider this request.

ADD REPLYlink 7.7 years ago by GenoMax 144k

Entering edit mode

Hi

I think you are confusing the ENA with Ensembl.

The ENA is the nucleotide archive hosted at EMBL-EBI and is a different service to Ensembl.

Ensembl, the genome browser does source data from the ENA but isn't the same entity. Nicole works for the ENA not Ensembl

ADD REPLYlink 7.7 years ago by Laura &starf; 1.8k

Entering edit mode

You are correct. My apologies. Got carried away there for a time.

ADD REPLYlink 7.7 years ago by GenoMax 144k

Entering edit mode

I would suggest to look into how Entrez Direct works and how one can chain its actions together to full appreciate the level innovation there.

While the Entrez Direct implementation is a bit choppy (mainly the error reporting is lacking) it has functionalities that make it uniquely powerful. It is just that many people don't know about it yet.

ADD REPLYlink 7.8 years ago by Istvan Albert 101k

1

Entering edit mode

Thanks for the feedback Istvan and genomax2. I have had a look at Entrez Direct and will use it and your comments here when building a specification for our planned scripts. And yes, error reporting is an important requirement. You will be happy to know that this work is considered to be high-priority for 2017. I'll make a note to make any announcements regarding release of new programmatic tools here, but if you would like to make sure you are kept abreast of any and all announcements regarding new ENA functionality (or service interruptions), please consider signing up to our ena-announce mailing list: http://listserver.ebi.ac.uk/mailman/listinfo/ena-announce

ADD REPLYlink 7.7 years ago by Nicole &utrif; 10

Entering edit mode

Hi Nicole - I was wondering if there's been any progress on this? Just got curious if there's a tool similar to Entrez-direct for ENA.

Thank you!

-- Alex

ADD REPLYlink 2.7 years ago by predeus &starf; 2.0k

Login before adding your answer.

Tell us what you think of the ENA browser? (2024)
Top Articles
2019 Subaru Impreza for sale - Denver, CO - craigslist
2021 Buick Encore for sale - Denver, CO - craigslist
What Is Single Sign-on (SSO)? Meaning and How It Works? | Fortinet
Trevor Goodwin Obituary St Cloud
Dricxzyoki
Cottonwood Vet Ottawa Ks
Caroline Cps.powerschool.com
360 Training Alcohol Final Exam Answers
35105N Sap 5 50 W Nit
Apnetv.con
Lycoming County Docket Sheets
Snarky Tea Net Worth 2022
Jcpenney At Home Associate Kiosk
Shemal Cartoon
Erskine Plus Portal
Belle Delphine Boobs
Christina Khalil Forum
Diamond Piers Menards
Invert Clipping Mask Illustrator
Energy Healing Conference Utah
Gayla Glenn Harris County Texas Update
Samantha Aufderheide
Universal Stone Llc - Slab Warehouse & Fabrication
Craigslist Roseburg Oregon Free Stuff
Sorrento Gourmet Pizza Goshen Photos
The Banshees Of Inisherin Showtimes Near Broadway Metro
60 Second Burger Run Unblocked
Panchang 2022 Usa
Boondock Eddie's Menu
Ourhotwifes
Deleted app while troubleshooting recent outage, can I get my devices back?
Frostbite Blaster
Flashscore.com Live Football Scores Livescore
Publictributes
Vocabulary Workshop Level B Unit 13 Choosing The Right Word
Sukihana Backshots
Сталь aisi 310s российский аналог
10 Rarest and Most Valuable Milk Glass Pieces: Value Guide
Actor and beloved baritone James Earl Jones dies at 93
Citroen | Skąd pobrać program do lexia diagbox?
Does Target Have Slime Lickers
Craigslist St Helens
How the Color Pink Influences Mood and Emotions: A Psychological Perspective
Huntsville Body Rubs
Headlining Hip Hopper Crossword Clue
New Zero Turn Mowers For Sale Near Me
The Largest Banks - ​​How to Transfer Money With Only Card Number and CVV (2024)
9294027542
Used Auto Parts in Houston 77013 | LKQ Pick Your Part
Ssss Steakhouse Menu
Fetllife Com
Texas 4A Baseball
Latest Posts
Article information

Author: Duncan Muller

Last Updated:

Views: 6100

Rating: 4.9 / 5 (59 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Duncan Muller

Birthday: 1997-01-13

Address: Apt. 505 914 Phillip Crossroad, O'Konborough, NV 62411

Phone: +8555305800947

Job: Construction Agent

Hobby: Shopping, Table tennis, Snowboarding, Rafting, Motor sports, Homebrewing, Taxidermy

Introduction: My name is Duncan Muller, I am a enchanting, good, gentle, modern, tasty, nice, elegant person who loves writing and wants to share my knowledge and understanding with you.