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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, length, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
69094830 GT-AG 0 3.609819915992365e-05 5790 rna-XM_010937994.3 12947862 2 40213551 40219340 Elaeis guineensis 51953 CAG|GTTTAATTAT...TTCTTTTTATTT/GTTCTTTTTATT...TACAG|GTG 1 1 3.774
69094831 GT-AG 0 1.25095498843265e-05 307 rna-XM_010937994.3 12947862 3 40211773 40212079 Elaeis guineensis 51953 CTG|GTTTGTGCCC...TGTTTTTTGATG/TGTTTTTTGATG...TACAG|GTA 2 1 34.619
69094832 GT-AG 0 1.000000099473604e-05 264 rna-XM_010937994.3 12947862 4 40210017 40210280 Elaeis guineensis 51953 GAA|GTAAGTGTTT...GAATTCTTGTTG/CTTGTTGTAATA...TGCAG|GTT 0 1 65.905
69094833 GT-AG 0 0.0031377151347289 85 rna-XM_010937994.3 12947862 5 40209767 40209851 Elaeis guineensis 51953 CAG|GTATATTGTC...ATTTTTTTTTTT/TTCCTTCTGATT...AGCAG|TTG 0 1 69.365
69094834 GT-AG 0 0.0034790525210735 83 rna-XM_010937994.3 12947862 6 40209482 40209564 Elaeis guineensis 51953 CTG|GTAGCCCCTT...GTTTCACTGATT/TTGGGTTTCACT...TGTAG|GTG 1 1 73.6
69094835 GT-AG 0 1.000000099473604e-05 93 rna-XM_010937994.3 12947862 7 40209277 40209369 Elaeis guineensis 51953 AAG|GTGACTACTG...CCACCCTCATAT/TATGCACTCAAT...TTCAG|GGC 2 1 75.949
69094836 GT-AG 0 2.5798576991233315e-05 138 rna-XM_010937994.3 12947862 8 40208991 40209128 Elaeis guineensis 51953 CAG|GTCTGTCCTT...AAATTCTTATTC/CAAATTCTTATT...TTCAG|GGT 0 1 79.052
69094837 GT-AG 0 0.0008263593646133 124 rna-XM_010937994.3 12947862 9 40208669 40208792 Elaeis guineensis 51953 CAG|GTTTCAATCA...TTTTCTTTCATA/TTTTCTTTCATA...TAAAG|GTG 0 1 83.204
69094838 GT-AG 0 0.0003103366093731 138 rna-XM_010937994.3 12947862 10 40208252 40208389 Elaeis guineensis 51953 AAA|GTAATTTTCT...AAAATTTTATTG/TTTTCCCTCACA...TGTAG|TAT 0 1 89.054
69094839 GC-AG 0 1.000000099473604e-05 126 rna-XM_010937994.3 12947862 11 40207964 40208089 Elaeis guineensis 51953 AAG|GCAAGTCTTT...TCATTTTCAATT/TTCATTTTCAAT...TGTAG|GTT 0 1 92.451
69094840 GT-AG 0 1.000000099473604e-05 532 rna-XM_010937994.3 12947862 12 40207213 40207744 Elaeis guineensis 51953 CAA|GTAAGTCCCT...TTTCCTTTCACT/TTTCCTTTCACT...TGCAG|GGA 0 1 97.043
69105264 GT-AG 0 1.000000099473604e-05 2476 rna-XM_010937994.3 12947862 1 40219450 40221925 Elaeis guineensis 51953 CAG|GTAATAATCC...GTTTCTTTATTT/TTGTTATTTATT...TGAAG|TTT   0 2.873

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