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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
140325549 GT-AG 0 1.000000099473604e-05 2083 rna-XM_015760742.2 25439187 1 33007803 33009885 Oryza sativa 4530 GAG|GTGCGTTACT...ATATTTGTAACT/ATATTTGTAACT...TACAG|GGC 0 1 3.583
140325550 GT-AG 0 0.0008517315987823 99 rna-XM_015760742.2 25439187 2 33007637 33007735 Oryza sativa 4530 AAG|GTACCAGAAG...ATTTTTTTAATT/ATTTTTTTAATT...AGCAG|AAA 1 1 5.361
140325551 GT-AG 0 1.000000099473604e-05 91 rna-XM_015760742.2 25439187 3 33007402 33007492 Oryza sativa 4530 ATG|GTGAGAAACA...ATGATTTTAATT/TTTTATTTTATT...CACAG|ATT 1 1 9.183
140325552 GT-AG 0 0.0016268596733302 96 rna-XM_015760742.2 25439187 4 33007096 33007191 Oryza sativa 4530 CTT|GTATGGCGGT...GCTTTCTTAGCG/AATTATTTGATA...TGCAG|ATT 1 1 14.756
140325553 GT-AG 0 1.2942919712519016e-05 729 rna-XM_015760742.2 25439187 5 33005426 33006154 Oryza sativa 4530 CAG|GTAATTTACC...ATGTACTTAACC/TTTTTCTTCAAT...GGCAG|GAT 0 1 39.729
140325554 GT-AG 0 0.0084371386334356 81 rna-XM_015760742.2 25439187 6 33005273 33005353 Oryza sativa 4530 CAG|GTACACTTTG...AACTTCTGATTT/CAACTTCTGATT...GTCAG|AAA 0 1 41.64
140325555 GT-AG 0 0.0028216810364294 99 rna-XM_015760742.2 25439187 7 33005096 33005194 Oryza sativa 4530 CAG|GTATGCTAGT...CTGTCCTAATTT/ACTGTCCTAATT...TTCAG|GGC 0 1 43.71
140325556 GT-AG 0 1.000000099473604e-05 944 rna-XM_015760742.2 25439187 8 33003254 33004197 Oryza sativa 4530 AAG|GTCAGTAATT...TTGTTATTATCT/TATCTGCTCATC...TGCAG|CAA 1 1 67.542
140325557 GT-AG 0 1.000000099473604e-05 454 rna-XM_015760742.2 25439187 9 33002669 33003122 Oryza sativa 4530 AAG|GTGTGTTTAG...GAACTTTTAGGA/AGGAGGCTAACT...TGCAG|GAG 0 1 71.019
140325558 GT-AG 0 1.000000099473604e-05 484 rna-XM_015760742.2 25439187 10 33001963 33002446 Oryza sativa 4530 AAT|GTAAGTGATA...GATTCATTGATC/TTCTGATTCATT...TGCAG|GAT 0 1 76.911
140325559 GT-AG 0 9.390639634647694e-05 73 rna-XM_015760742.2 25439187 11 33001335 33001407 Oryza sativa 4530 GAG|GTTTGTATTC...AGTTCTTTATTG/TCTTTATTGACT...GACAG|GTT 0 1 91.64
140325560 GT-AG 0 1.0609657690056356e-05 526 rna-XM_015760742.2 25439187 12 33000599 33001124 Oryza sativa 4530 CAG|GTAAACCTAA...TTACTCTTTTCT/TATCGTCTCATG...CTCAG|GAG 0 1 97.213

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