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 = 12917216

✎ 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
68847095 GT-AG 0 1.000000099473604e-05 2100 rna-XM_009634910.2 12917216 1 1087958 1090057 Egretta garzetta 188379 ACA|GTAAGTGACT...TTTTTTTTTTTT/TACTTACTAATC...ATTAG|GCA 0 1 3.276
68847096 GT-AG 0 1.187015730055217e-05 2224 rna-XM_009634910.2 12917216 2 1085542 1087765 Egretta garzetta 188379 TGG|GTAAGCAAAT...TTGTTCGTAGCT/CGTAGCTTTAAG...CTCAG|GTG 0 1 13.261
68847097 GT-AG 0 1.000000099473604e-05 1418 rna-XM_009634910.2 12917216 3 1084005 1085422 Egretta garzetta 188379 GAG|GTAATGTACT...TGTCACTTCTCT/ACTGATGTCACT...TGCAG|GTT 2 1 19.449
68847098 GT-AG 0 1.000000099473604e-05 3490 rna-XM_009634910.2 12917216 4 1080461 1083950 Egretta garzetta 188379 CAG|GTAAGTAGCT...TTTTCCTTCTCT/TTTTTTTTCCTT...TCCAG|CCA 2 1 22.257
68847099 GT-AG 0 1.000000099473604e-05 1001 rna-XM_009634910.2 12917216 5 1079279 1080279 Egretta garzetta 188379 CAG|GTAAATGAGT...CCATCTGTGACT/GTTCTTCTGACT...TGCAG|TTT 0 1 31.669
68847100 GT-AG 0 1.000000099473604e-05 4442 rna-XM_009634910.2 12917216 6 1074659 1079100 Egretta garzetta 188379 AAG|GTTAGCAGCA...CACTCTTTTGTC/CAACATTTCACT...CCCAG|ACT 1 1 40.926
68847101 GT-AG 0 1.000000099473604e-05 2596 rna-XM_009634910.2 12917216 7 1071893 1074488 Egretta garzetta 188379 CAG|GTAAAAAACC...TTGTTCTTTTCC/ACATGATTTATT...CTTAG|TTT 0 1 49.766
68847102 GT-AG 0 1.000000099473604e-05 192 rna-XM_009634910.2 12917216 8 1071600 1071791 Egretta garzetta 188379 CAT|GTGAGTCCCC...GTGACCTTAATG/ACCTTAATGATT...AACAG|GAA 2 1 55.018
68847103 GT-AG 0 1.000000099473604e-05 1197 rna-XM_009634910.2 12917216 9 1070274 1071470 Egretta garzetta 188379 AAG|GTAGAACAGA...GGGTTCTTGCAG/CCAGCACTAACT...TCCAG|GAT 2 1 61.726
68847104 GT-AG 0 1.000000099473604e-05 1518 rna-XM_009634910.2 12917216 10 1068633 1070150 Egretta garzetta 188379 CAG|GTAAGGTTAA...TTTTTCTTACTT/GTTTTTCTTACT...CTCAG|GTG 2 1 68.123
68847105 GT-AG 0 0.00611609204009 3143 rna-XM_009634910.2 12917216 11 1065348 1068490 Egretta garzetta 188379 TTG|GTATGTTGGT...GATATTTTGATT/GATATTTTGATT...AACAG|GAT 0 1 75.507
68847106 GT-AG 0 1.000000099473604e-05 4019 rna-XM_009634910.2 12917216 12 1061266 1065284 Egretta garzetta 188379 CTG|GTAAGTACAA...GATGTCTTATGT/TGATGTCTTATG...CACAG|GCT 0 1 78.783
68847107 GT-AG 0 1.000000099473604e-05 1717 rna-XM_009634910.2 12917216 13 1059411 1061127 Egretta garzetta 188379 CAG|GTGAGTTTCT...CACTCCTTACCT/TCACTCCTTACC...CCCAG|GTT 0 1 85.959

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