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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
84004280 GT-AG 0 0.002048804157782 77 rna-XM_028325587.1 15550504 1 57155634 57155710 Glycine soja 3848 TCT|GTAAGTTCCT...AGTTTTTTAATT/AGTTTTTTAATT...CCCAG|GAA 0 1 4.561
84004281 GT-AG 0 1.000000099473604e-05 111 rna-XM_028325587.1 15550504 2 57156332 57156442 Glycine soja 3848 CAG|GTTAGCTTAT...AATTCTTTATTG/TTTCTTCTAATC...TTTAG|GTA 0 1 21.725
84004282 GT-AG 0 1.000000099473604e-05 104 rna-XM_028325587.1 15550504 3 57156650 57156753 Glycine soja 3848 AAG|GTAATTCTTT...GTGGCCTTGTTA/TAGATTCTCATG...ATCAG|GTG 0 1 27.446
84004283 GT-AG 0 1.000000099473604e-05 106 rna-XM_028325587.1 15550504 4 57157063 57157168 Glycine soja 3848 CAG|GTGGTCATAC...TCCTTTTTACCT/TAGGTGCTTATT...TGCAG|GTA 0 1 35.987
84004284 GT-AG 0 0.0036979827622328 174 rna-XM_028325587.1 15550504 5 57157294 57157467 Glycine soja 3848 TAT|GTAATCTCTT...TTTCCCTTTGTT/TATTGCTTCATT...CTCAG|GGG 2 1 39.442
84004285 GT-AG 1 98.64343796723304 297 rna-XM_028325587.1 15550504 6 57158617 57158913 Glycine soja 3848 TCA|GTATCCTTAT...CTGTCCTTAGAG/CCTGTCCTTAGA...GTCAG|ATA 2 1 71.2
84004286 GT-AG 0 0.1020444115952952 115 rna-XM_028325587.1 15550504 7 57159056 57159170 Glycine soja 3848 CAT|GTATTCCTAA...CATTCTTTGGTT/GGTTTACTCATT...TGCAG|AAG 0 1 75.124
84004287 GT-AG 0 4.355737892460956e-05 563 rna-XM_028325587.1 15550504 8 57159331 57159893 Glycine soja 3848 TTG|GTACATCCAT...CTCTCTTTGGCA/CATCAACTAATG...GGCAG|GGG 1 1 79.547
84004288 GT-AG 0 3.4812116540164907e-05 1152 rna-XM_028325587.1 15550504 9 57160058 57161209 Glycine soja 3848 AAG|GTGTGATTTC...TTTTCTTTGAAT/TTTTCTTTGAAT...GACAG|GAT 0 1 84.08
84004289 GT-AG 0 1.000000099473604e-05 165 rna-XM_028325587.1 15550504 10 57161296 57161460 Glycine soja 3848 GAG|GTACTGAAAG...GCATCCTTGTTC/TTTATATTCATA...GACAG|GCA 2 1 86.457
84004290 GT-AG 0 1.000000099473604e-05 2133 rna-XM_028325587.1 15550504 11 57161561 57163693 Glycine soja 3848 AAG|GTTTGAGACC...ACTATTTTATAA/AACTATTTTATA...TGTAG|GTG 0 1 89.221
84004291 GT-AG 0 0.0002294488967865 946 rna-XM_028325587.1 15550504 12 57163756 57164701 Glycine soja 3848 CAT|GTAAGTTTAC...AGTGTTTTATTT/CAGTGTTTTATT...TTCAG|ATG 2 1 90.934
84004292 GT-AG 0 1.000000099473604e-05 439 rna-XM_028325587.1 15550504 13 57164862 57165300 Glycine soja 3848 CAG|GTAAACCAGG...TGGTCCTAAGCT/TTTGAATTTATT...TGCAG|GTG 0 1 95.357

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