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)

13 rows where transcript_id = 16807721

✎ 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
89547941 GT-AG 0 1.000000099473604e-05 479 rna-XM_009920579.1 16807721 1 22 500 Haliaeetus albicilla 8969 AAG|GTGAGTCCCG...TTTGCCTTACAC/TTTTGCCTTACA...TTCAG|ATC 0 1 1.081
89547942 GT-AG 0 1.000000099473604e-05 655 rna-XM_009920579.1 16807721 2 639 1293 Haliaeetus albicilla 8969 AGG|GTAAAATACA...TGTGTTTTATCT/ATGTGTTTTATC...ATCAG|CTT 0 1 9.369
89547943 GT-AG 0 1.000000099473604e-05 177 rna-XM_009920579.1 16807721 3 1408 1584 Haliaeetus albicilla 8969 AAG|GTAGGTGTCT...TCATTTTTATTT/TTCATTTTTATT...TTCAG|GAA 0 1 16.216
89547944 GT-AG 0 1.000000099473604e-05 502 rna-XM_009920579.1 16807721 4 1669 2170 Haliaeetus albicilla 8969 AAG|GTGAGACGCT...CATGTCTTATTT/TCATGTCTTATT...CCTAG|GTA 0 1 21.261
89547945 GT-AG 0 1.000000099473604e-05 895 rna-XM_009920579.1 16807721 5 2307 3201 Haliaeetus albicilla 8969 TTG|GTAAGAAGCA...CTGTGCTTTTTT/TTAAGATTCACA...TCCAG|ATT 1 1 29.429
89547946 GT-AG 0 1.000000099473604e-05 971 rna-XM_009920579.1 16807721 6 3306 4276 Haliaeetus albicilla 8969 ATG|GTAAGAGCAC...TTGCCTTTGAAT/TAGCTCCTGACC...TGTAG|CAG 0 1 35.676
89547947 GT-AG 0 0.0001005130141318 526 rna-XM_009920579.1 16807721 7 4413 4938 Haliaeetus albicilla 8969 TAG|GTAAGCGTTC...GTTTTCTTATTT/AGTTTTCTTATT...TTCAG|GTT 1 1 43.844
89547948 GT-AG 0 3.9351334610707865e-05 377 rna-XM_009920579.1 16807721 8 5027 5403 Haliaeetus albicilla 8969 CAA|GTAAGCCAAG...TTATCTTTACTA/TCTTTACTAACA...AATAG|GTC 2 1 49.129
89547949 GT-AG 0 1.000000099473604e-05 663 rna-XM_009920579.1 16807721 9 5588 6250 Haliaeetus albicilla 8969 CAG|GTGAGCTCCA...TCTTTCTGAATC/CTCTTTCTGAAT...ACTAG|GTA 0 1 60.18
89547950 GT-AG 0 5.296536697905961e-05 756 rna-XM_009920579.1 16807721 10 6394 7149 Haliaeetus albicilla 8969 AGG|GTAGGTATGC...TGTTTTTTAATG/TTGTTTTTTAAT...CCCAG|AGC 2 1 68.769
89547951 GT-AG 0 1.000000099473604e-05 564 rna-XM_009920579.1 16807721 11 7287 7850 Haliaeetus albicilla 8969 AAG|GTAGGACTGT...AGTGACTTAACT/ACTTAACTGACA...CCCAG|CTT 1 1 76.997
89547952 GT-AG 0 1.000000099473604e-05 326 rna-XM_009920579.1 16807721 12 8063 8388 Haliaeetus albicilla 8969 GAG|GTAAATCAGG...ACTTCATTAGCA/ATATCTCTGACC...TGTAG|GAA 0 1 89.73
89547953 GT-AG 0 1.0825672442482324e-05 89 rna-XM_009920579.1 16807721 13 8471 8559 Haliaeetus albicilla 8969 CAG|GTCTGTATTA...GTTTCACTAACA/ATTGGTTTCACT...CTCAG|AAA 1 1 94.655

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 47.696ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)