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)

14 rows where transcript_id = 32765342

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, 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
183237978 GT-AG 0 0.0030182995723862 170 rna-XM_004951863.4 32765342 1 8014745 8014914 Setaria italica 4555 AAG|GTACCTCTTT...TGTTCTGTTGCT/CTGTTGCTGACG...CGCAG|GGG 1 1 1.969
183237979 GT-AG 0 1.000000099473604e-05 1434 rna-XM_004951863.4 32765342 2 8015034 8016467 Setaria italica 4555 CAG|GTCAGAGCTT...TATGTTTGAACT/TTTGAACTTAGT...TTCAG|GTT 0 1 5.052
183237980 GT-AG 0 0.0005814078605595 85 rna-XM_004951863.4 32765342 3 8016567 8016651 Setaria italica 4555 CAT|GTAATCTACA...ATCGCTTTCATT/ATCGCTTTCATT...CTCAG|GCC 0 1 7.617
183237981 GT-AG 0 3.6505215676157615e-05 84 rna-XM_004951863.4 32765342 4 8016709 8016792 Setaria italica 4555 ACA|GTGAGCATCT...ATGGCTTTGACT/ATGGCTTTGACT...TTTAG|TAT 0 1 9.093
183237982 GT-AG 0 0.0001491942414041 105 rna-XM_004951863.4 32765342 5 8016949 8017053 Setaria italica 4555 CTG|GTATGTAGGC...ATATTTTTACTA/AATATTTTTACT...TATAG|GAC 0 1 13.135
183237983 GT-AG 0 1.000000099473604e-05 263 rna-XM_004951863.4 32765342 6 8017139 8017401 Setaria italica 4555 GAG|GTGGGGAAAA...TTACTCTTAATC/CTCTTAATCATT...ATCAG|GCC 1 1 15.337
183237984 GT-AG 0 2.831623591386457e-05 86 rna-XM_004951863.4 32765342 7 8017493 8017578 Setaria italica 4555 TAG|GTAAGTTTCG...TTTGCCTTATGA/TTTTGCCTTATG...TTTAG|GGA 2 1 17.694
183237985 GT-AG 0 1.000000099473604e-05 107 rna-XM_004951863.4 32765342 8 8017744 8017850 Setaria italica 4555 AAG|GTGAATAAAG...TTTATCTGAAAT/ATTTATCTGAAA...TTCAG|GGC 2 1 21.969
183237986 GT-AG 0 1.000000099473604e-05 146 rna-XM_004951863.4 32765342 9 8017974 8018119 Setaria italica 4555 AAG|GTACAGCAGC...AATTATTTAATG/ATATTACTAATT...TTCAG|GTA 2 1 25.155
183237987 GT-AG 0 1.000000099473604e-05 95 rna-XM_004951863.4 32765342 10 8018196 8018290 Setaria italica 4555 CAG|GTTGGATTGC...TTAATGTTAATT/TTAATGTTAATT...GGTAG|GTT 0 1 27.124
183237988 GT-AG 0 1.000000099473604e-05 114 rna-XM_004951863.4 32765342 11 8018421 8018534 Setaria italica 4555 TAG|GTAAAGAATC...CTTTTCGTAGTT/ATTGTAATCACT...AACAG|ATG 1 1 30.492
183237989 GT-AG 0 0.0001444095694087 613 rna-XM_004951863.4 32765342 12 8020370 8020982 Setaria italica 4555 AAG|GTTTGCACTC...ACTCTCTTGAAT/TAGCCATTCACT...TGTAG|GTC 0 1 78.031
183237990 GT-AG 0 0.0001361719507123 292 rna-XM_004951863.4 32765342 13 8021174 8021465 Setaria italica 4555 GGA|GTAAGTTTAC...AGGATTTTATTG/AAGGATTTTATT...TACAG|GGA 2 1 82.979
183249973 GT-AG 0 2.6731501497115467e-05 96 rna-XM_004951863.4 32765342 14 8021679 8021774 Setaria italica 4555 CAA|GTACGTGCAC...GCTTTCATAATT/TATGAATTCATT...GGCAG|ATG   0 88.497

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