home / WtMTA

introns

Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)

id
INTEGER (primary key), globally unique identifier for each intron
dinucleotide_pair
TEXT, terminal dinucleotide sequences of the intron
is_minor
INTEGER, indicates if the intron is a minor intron (1) or not (0)
score
REAL, score representing the probability (0-100%) of the intron being minor
length
INTEGER, length of the intron in base pairs
transcript_id
INTEGER (foreign key referencing transcripts(id)), parent transcript
ordinal_index
INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
start
INTEGER, start position of the intron in the genome
end
INTEGER, end position of the intron in the genome
taxonomy_id
INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
scored_motifs
TEXT, motifs scored for the intron
phase
INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
in_cds
INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
relative_position
REAL, relative position of the intron within the transcript (as a percentage of coding length)

12 rows where transcript_id = 3682602

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
18436446 GT-AG 0 1.6189423691372406e-05 1034 rna-XM_033774033.1 3682602 1 9573229 9574262 Asterias rubens 7604 AGG|GTTTGTGTGC...AGTTCTTTATAA/TAGTTCTTTATA...TACAG|GCT 0 1 2.594
18436447 GT-AG 0 1.000000099473604e-05 201 rna-XM_033774033.1 3682602 2 9574299 9574499 Asterias rubens 7604 GAG|GTGAGTACGG...CAATTGTTGATT/CAATTGTTGATT...TACAG|ATT 0 1 3.458
18436448 GT-AG 0 1.443551247088367e-05 699 rna-XM_033774033.1 3682602 3 9574618 9575316 Asterias rubens 7604 TTG|GTAATTATTA...GTTTTTTTGTTT/TATTTATTTACC...CTCAG|GAC 1 1 6.292
18436449 GT-AG 0 1.000000099473604e-05 949 rna-XM_033774033.1 3682602 4 9575433 9576381 Asterias rubens 7604 GAG|GTAAGGAAAG...TTTTCCTTCTTT/AATCAATTCACT...TTTAG|GGT 0 1 9.078
18436450 GT-AG 0 1.000000099473604e-05 1954 rna-XM_033774033.1 3682602 5 9576740 9578693 Asterias rubens 7604 CAG|GTTAGTCCGT...ATTTCCTCATTT/GATTTCCTCATT...AACAG|AAC 1 1 17.675
18436451 GT-AG 0 1.000000099473604e-05 896 rna-XM_033774033.1 3682602 6 9578876 9579771 Asterias rubens 7604 AAG|GTACAGCTCC...CCTTTTTTCATT/CCTTTTTTCATT...ATCAG|GCT 0 1 22.046
18436452 GT-AG 0 0.0001506897065996 634 rna-XM_033774033.1 3682602 7 9580003 9580636 Asterias rubens 7604 CAG|GTACGTTCCC...TTTTTTTTACCC/TTTTTTTTTACC...TATAG|GCC 0 1 27.594
18436453 GT-AG 0 1.000000099473604e-05 1072 rna-XM_033774033.1 3682602 8 9580827 9581898 Asterias rubens 7604 TCG|GTCAGTATTT...GTAGTTTTATTT/TGTAGTTTTATT...TCCAG|GCG 1 1 32.157
18436454 GT-AG 0 1.000000099473604e-05 597 rna-XM_033774033.1 3682602 9 9582021 9582617 Asterias rubens 7604 GAG|GTGGGTGAAT...ATCCTCTTGATA/TTGTGTATTATT...CTCAG|TCG 0 1 35.086
18436455 GT-AG 0 1.000000099473604e-05 196 rna-XM_033774033.1 3682602 10 9582765 9582960 Asterias rubens 7604 AAG|GTGAGGTTAA...ATGCCTTTGACT/ATGCCTTTGACT...TACAG|GTA 0 1 38.617
18436456 GT-AG 0 1.000000099473604e-05 501 rna-XM_033774033.1 3682602 11 9585295 9585795 Asterias rubens 7604 ATG|GTGAGTTACC...ATTTTATTGACT/ATTTTATTGACT...CACAG|TCT 0 1 94.669
18436457 GT-AG 0 1.0739132204385113e-05 1110 rna-XM_033774033.1 3682602 12 9585892 9587001 Asterias rubens 7604 CAG|GTACATGTAC...CTATTTGTGATT/CTATTTGTGATT...TGTAG|TTA 0 1 96.974

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "introns" (
"id" INTEGER,
  "dinucleotide_pair" TEXT,
  "is_minor" INTEGER,
  "score" REAL,
  "length" INTEGER,
  "transcript_id" INTEGER,
  "ordinal_index" INTEGER,
  "start" INTEGER,
  "end" INTEGER,
  "taxonomy_id" INTEGER,
  "scored_motifs" TEXT,
  "phase" INTEGER,
  "in_cds" INTEGER,
  "relative_position" REAL
  ,PRIMARY KEY ([id]),
   FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]),
   FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id])
);
CREATE INDEX [idx_introns_transcript_id]
    ON [introns] ([transcript_id]);
CREATE INDEX [idx_introns_taxonomy_id]
    ON [introns] ([taxonomy_id]);
CREATE INDEX [idx_introns_phase]
    ON [introns] ([phase]);
CREATE INDEX [idx_introns_is_minor]
    ON [introns] ([is_minor]);
CREATE INDEX [idx_introns_dinucleotide_pair]
    ON [introns] ([dinucleotide_pair]);
CREATE INDEX [idx_introns_score]
    ON [introns] ([score]);
CREATE INDEX [idx_introns_in_cds]
    ON [introns] ([in_cds]);
Powered by Datasette · Queries took 23.761ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)