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

✎ 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
77101579 GT-AG 0 4.759217533554742e-05 216 rna-XM_024148614.1 14424035 1 1791783 1791998 Eutrema salsugineum 72664 ATC|GTAATGCTCC...TGCCTTTTAATT/TGCCTTTTAATT...TCCAG|AGG 0 1 1.442
77101580 GT-AG 0 1.000000099473604e-05 166 rna-XM_024148614.1 14424035 2 1792263 1792428 Eutrema salsugineum 72664 GAG|GTACGGAGGA...GATTCCTTTGTG/TTTGTGTTGAGA...TGAAG|GAG 0 1 5.974
77101581 GT-AG 0 1.000000099473604e-05 73 rna-XM_024148614.1 14424035 3 1792732 1792804 Eutrema salsugineum 72664 AGG|GTTCGTCCCT...ATGAACTTACCT/TGTAATCTGATG...TGCAG|GTT 0 1 11.176
77101582 GC-AG 0 1.000000099473604e-05 151 rna-XM_024148614.1 14424035 4 1792964 1793114 Eutrema salsugineum 72664 GAG|GCAAGTCAGA...TGTCCCTGAGTT/CCTGAGTTCATG...TGCAG|GAT 0 1 13.906
77101583 GT-AG 0 1.000000099473604e-05 80 rna-XM_024148614.1 14424035 5 1793277 1793356 Eutrema salsugineum 72664 AGG|GTAATGCTTT...GTTGCTTTATCT/TTTGCCTTTATT...TTCAG|GCT 0 1 16.687
77101584 GT-AG 0 1.000000099473604e-05 74 rna-XM_024148614.1 14424035 6 1793578 1793651 Eutrema salsugineum 72664 AAG|GTTAGTACTT...GTCTCCATATTT/ATTTTGCTGACA...GGCAG|ATT 2 1 20.481
77101585 GT-AG 0 0.0016382693205845 88 rna-XM_024148614.1 14424035 7 1793794 1793881 Eutrema salsugineum 72664 AAA|GTATTTACTG...TATGCTTTCTTG/GAAGTAGTCATT...CACAG|GTG 0 1 22.918
77101586 GT-AG 0 0.0101323917992812 94 rna-XM_024148614.1 14424035 8 1794218 1794311 Eutrema salsugineum 72664 AAG|GTAACCATTT...AACTCCTTTGCT/CCTTTGCTGATA...TTCAG|GAT 0 1 28.687
77101587 GT-AG 0 1.000000099473604e-05 162 rna-XM_024148614.1 14424035 9 1794599 1794760 Eutrema salsugineum 72664 TTG|GTAAGATGCT...TTTTTTTTGAAT/TTTTTTTTGAAT...TATAG|GGA 2 1 33.614
77101588 GT-AG 0 4.037530474752805e-05 92 rna-XM_024148614.1 14424035 10 1795020 1795111 Eutrema salsugineum 72664 CAG|GTACATTAAT...ATTATCTTGTCT/TCTATGCTGACT...TGTAG|GTC 0 1 38.06
77101589 GT-AG 0 1.3490793748041734e-05 93 rna-XM_024148614.1 14424035 11 1798171 1798263 Eutrema salsugineum 72664 CAG|GTAATTTGAA...TATTCATTAACA/TCTCTATTCATT...TGCAG|CCC 2 1 90.575
77101590 GT-AG 0 1.000000099473604e-05 143 rna-XM_024148614.1 14424035 12 1798336 1798478 Eutrema salsugineum 72664 CAG|GTTCAACTTT...TTGTTCTAAAAT/GTTGTTCTAAAA...CTCAG|CCC 2 1 91.811
77114411 GT-AG 0 0.0008130956625774 88 rna-XM_024148614.1 14424035 13 1798687 1798774 Eutrema salsugineum 72664 TAG|GTAACGTCTA...TACTTCCTAACA/TACTTCCTAACA...ACCAG|CAG   0 95.382

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