my $slice = $slice_adaptor->fetch_by_gene_stable_id( 'ENSG00000099889', 5e3 );
Where does it look for?
What does it bring?
When the code is running I have this results:
3. Investigate what regulatory elements are returned:
Feature Type: TF binding site
ENSR00001041428: Cell: MultiCell
Feature Type: Enhancer
ENSR00000672895: Cell: MultiCell
Feature Type: CTCF
ENSR00000169383: Cell: MultiCell
Feature Type: Enhancer
ENSR00000291472: Cell: MultiCell
What does it mean?
5e3 is a perl shortcut for 5000.
ie, it means 5 x 10^3, ie 5000
For reference, it's not a Perl thing, it is scientific notation and the syntax is the same in most programming languages and calculators. I recognize that in the context of an API the meaning could be lost though.