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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
140208719 GT-AG 0 1.000000099473604e-05 1562 rna-XM_015843547.2 25413772 1 25315693 25317254 Oryza brachyantha 4533 GAG|GTGCGTTACT...ATCTTTGTAATT/ATCTTTGTAATT...CACAG|GTA 0 1 3.877
140208720 GT-AG 0 1.000000099473604e-05 104 rna-XM_015843547.2 25413772 2 25315519 25315622 Oryza brachyantha 4533 AAG|GTTGGTTAAG...CAATTTTTAATT/CAATTTTTAATT...AGCAG|AAA 1 1 5.723
140208721 GT-AG 0 1.000000099473604e-05 89 rna-XM_015843547.2 25413772 3 25315283 25315371 Oryza brachyantha 4533 ATG|GTGAGAAACA...ACCATTTTAATT/ACCATTTTAATT...CACAG|ATT 1 1 9.599
140208722 GT-AG 0 0.0001784632342553 94 rna-XM_015843547.2 25413772 4 25314982 25315075 Oryza brachyantha 4533 CTT|GTATGGCGGT...AATTATTTGATA/AATTATTTGATA...TGCAG|ATT 1 1 15.058
140208723 GT-AG 0 1.000000099473604e-05 495 rna-XM_015843547.2 25413772 5 25313540 25314034 Oryza brachyantha 4533 CAG|GTAATAGACC...GTGTACTTAACC/AGTGTACTTAAC...GGCAG|GAT 0 1 40.032
140208724 GT-AG 0 0.0013220249133446 82 rna-XM_015843547.2 25413772 6 25313386 25313467 Oryza brachyantha 4533 CAG|GTACTCCTTT...AACTTCTGAAAT/CAACTTCTGAAA...GGCAG|AAA 0 1 41.93
140208725 GT-AG 0 0.0021749647940913 118 rna-XM_015843547.2 25413772 7 25313190 25313307 Oryza brachyantha 4533 CAG|GTATGCTAGT...TATATCCTAATT/ATATTTTTCAAT...TTTAG|GGC 0 1 43.987
140208726 GT-AG 0 1.000000099473604e-05 890 rna-XM_015843547.2 25413772 8 25311396 25312285 Oryza brachyantha 4533 AAG|GTCAGTAATT...ATTCTCTTAGTT/AATGTTGTGATT...TGCAG|CAA 1 1 67.827
140208727 GT-AG 0 8.491169556539298e-05 635 rna-XM_015843547.2 25413772 9 25310630 25311264 Oryza brachyantha 4533 AAG|GTATGTTCAC...GCTTCCTTGTGC/CGGAGGTTAACT...TGCAG|GAG 0 1 71.282
140208728 GT-AG 0 1.000000099473604e-05 618 rna-XM_015843547.2 25413772 10 25309790 25310407 Oryza brachyantha 4533 ACT|GTAAGTAAAC...TTTGCCTTGCAT/CCATTTCTGATC...TGCAG|GAT 0 1 77.136
140208729 GT-AG 0 8.303715183882501e-05 75 rna-XM_015843547.2 25413772 11 25309163 25309237 Oryza brachyantha 4533 GAG|GTTTGTATTC...TGTTCTTTACTG/TCTTTACTGACT...GACAG|GTT 0 1 91.693
140208730 GT-AG 0 1.000000099473604e-05 610 rna-XM_015843547.2 25413772 12 25308343 25308952 Oryza brachyantha 4533 CAG|GTAAGGCAAA...GTTCTGTTATCG/TGTTCTGTTATC...CTCAG|GAG 0 1 97.231

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