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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
140208590 GT-AG 0 0.0093258187659324 301 rna-XM_040529276.1 25413761 1 27058608 27058908 Oryza brachyantha 4533 CAG|GTACCTCTGC...TTCTCTTTCGCC/CACTAGCTAATC...TGTAG|GTA 0 1 22.917
140208591 GT-AG 0 0.0063852181554915 100 rna-XM_040529276.1 25413761 2 27058298 27058397 Oryza brachyantha 4533 CTG|GTATGTTGGA...CTTTTCTTGAAT/CTTTTCTTGAAT...GACAG|GGC 0 1 28.318
140208592 GT-AG 0 2.017838840177376e-05 960 rna-XM_040529276.1 25413761 3 27057077 27058036 Oryza brachyantha 4533 AAG|GTAATCGCAT...TTCTCTTTAATC/CAGTTATTGACA...TGCAG|GAA 0 1 35.031
140208593 GT-AG 0 1.000000099473604e-05 1039 rna-XM_040529276.1 25413761 4 27055951 27056989 Oryza brachyantha 4533 CAG|GTAGAAGCAC...TGTTCTTTTGCA/ACTTGCATCATT...TGCAG|GTT 0 1 37.269
140208594 TG-AG 0 1.000000099473604e-05 478 rna-XM_040529276.1 25413761 5 27055395 27055872 Oryza brachyantha 4533 AGC|TGAAGTAGGA...AACGGTTTGACC/AACGGTTTGACC...ACCAG|GCA 0 1 39.275
140208595 GT-CG 0 1.000000099473604e-05 1312 rna-XM_040529276.1 25413761 6 27054000 27055311 Oryza brachyantha 4533 GCG|GTGAGCCTGC...ATGGCGAAAATT/AGAGAAGTGAAA...GGGCG|ACA 2 1 41.409
140208596 GT-AG 0 1.000000099473604e-05 458 rna-XM_040529276.1 25413761 7 27052849 27053306 Oryza brachyantha 4533 GAG|GTTGTTCCTG...TTGTTATTAACA/TTGTTATTAACA...TGCAG|AAT 2 1 59.234
140208597 GT-AG 0 1.7027313916006407e-05 368 rna-XM_040529276.1 25413761 8 27052351 27052718 Oryza brachyantha 4533 GAG|GTAATCCATA...TTTATATTATTT/ATTTATATTATT...GCTAG|GTG 0 1 62.577
140208598 GT-AG 0 0.0485036502242029 237 rna-XM_040529276.1 25413761 9 27051583 27051819 Oryza brachyantha 4533 CAG|GTATCGCTTG...TCTGCTTTGAAT/TTTTTTATCATT...GACAG|GAT 0 1 76.235
140208599 GT-AG 0 1.000000099473604e-05 123 rna-XM_040529276.1 25413761 10 27051352 27051474 Oryza brachyantha 4533 CAA|GTAAGCAGCT...AGCTGCTTCATG/AAAAAAGTCATT...TGCAG|GGT 0 1 79.012
140208600 GT-AG 0 1.000000099473604e-05 185 rna-XM_040529276.1 25413761 11 27050621 27050805 Oryza brachyantha 4533 CAG|GTACAGAGTA...GATTTCTAATCT/TGATTTCTAATC...TTAAG|GTC 0 1 93.056
140208601 GT-AG 0 0.0053070054429353 379 rna-XM_040529276.1 25413761 12 27050119 27050497 Oryza brachyantha 4533 CAG|GTACACTGTT...CATTCCTTTTCT/TTATGTTTGATT...TGCAG|CAA 0 1 96.219

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