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

✎ 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
69095653 GT-AG 0 2.029421919364896e-05 1849 rna-XM_010921025.3 12947929 1 17575609 17577457 Elaeis guineensis 51953 CAG|GTTCTTTTCG...TTTTTTATGACA/CTATTTTTTATG...TGTAG|CTT 0 1 8.981
69095654 GT-AG 0 1.000000099473604e-05 2466 rna-XM_010921025.3 12947929 2 17572981 17575446 Elaeis guineensis 51953 ACA|GTTAGTTTTG...TAGTTTGTATTT/ATTTTCTGCACT...GACAG|GGG 0 1 13.981
69095655 GT-AG 0 1.000000099473604e-05 216 rna-XM_010921025.3 12947929 3 17572699 17572914 Elaeis guineensis 51953 CAG|GTAGAGTAAT...GTATTTTTAAAA/GTATTTTTAAAA...TGCAG|ATG 0 1 16.019
69095656 GT-AG 0 1.000000099473604e-05 113 rna-XM_010921025.3 12947929 4 17572442 17572554 Elaeis guineensis 51953 AGG|GTGATTTTAT...TGATTGTTGACC/TGATTGTTGACC...TTCAG|GAC 0 1 20.463
69095657 GT-AG 0 3.695376318283362e-05 156 rna-XM_010921025.3 12947929 5 17572172 17572327 Elaeis guineensis 51953 GAG|GTGTCACATG...TTTGTTTTGCTG/GTTTTGCTGATT...AATAG|ATT 0 1 23.981
69095658 GT-AG 0 0.0001603227428961 88 rna-XM_010921025.3 12947929 6 17571982 17572069 Elaeis guineensis 51953 CCT|GTAAGTCTAT...TTATTTTTAAAA/CTAATTCTCATT...TGCAG|TTA 0 1 27.13
69095659 GT-AG 0 1.000000099473604e-05 4448 rna-XM_010921025.3 12947929 7 17567348 17571795 Elaeis guineensis 51953 CAG|GTTAGTCTCG...ATTTTCTTATTT/AATTTTCTTATT...TATAG|AGT 0 1 32.87
69095660 GT-AG 0 1.000000099473604e-05 86 rna-XM_010921025.3 12947929 8 17567172 17567257 Elaeis guineensis 51953 GAG|GTACAAAGAT...CATTCTGTACCA/ACCAACTTCATA...TTCAG|GCT 0 1 35.648
69095661 GT-AG 0 1.000000099473604e-05 1690 rna-XM_010921025.3 12947929 9 17565347 17567036 Elaeis guineensis 51953 GAG|GTGAGCATTG...TCATCCTTGACT/TGTGCATTCATC...TGCAG|GAT 0 1 39.815
69095662 GT-AG 0 1.000000099473604e-05 1326 rna-XM_010921025.3 12947929 10 17563898 17565223 Elaeis guineensis 51953 CAG|GTGAGGCATT...TTTTTTTTCTTT/TGGTTTGTTACA...TGCAG|TGT 0 1 43.611
69095663 GT-AG 0 0.0008460158365094 387 rna-XM_010921025.3 12947929 11 17563425 17563811 Elaeis guineensis 51953 GTG|GTGTGTTTCT...CACTTCTTATTT/ACACTTCTTATT...TTCAG|TTT 2 1 46.265
69095664 GT-AG 0 0.0006213816803955 81 rna-XM_010921025.3 12947929 12 17562731 17562811 Elaeis guineensis 51953 AAG|GTAACTATCA...TAACCCTTATGT/TTTTTGCTTATA...AACAG|GAA 0 1 65.185
69095665 GT-AG 0 1.000000099473604e-05 108 rna-XM_010921025.3 12947929 13 17562545 17562652 Elaeis guineensis 51953 GAG|GTAGAACTAT...TGTTTCGCAATC/AGGTGCTTTATA...TGCAG|GCT 0 1 67.593

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