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

✎ 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
47813531 GT-AG 0 1.000000099473604e-05 932 rna-XM_027271556.1 8855937 1 49456096 49457027 Coffea arabica 13443 ATG|GTTGGTTATA...ACTGTCATGATT/TGCTTGCTCATG...TGCAG|GCA 0 1 5.78
47813532 GT-AG 0 1.000000099473604e-05 296 rna-XM_027271556.1 8855937 2 49457056 49457351 Coffea arabica 13443 TCG|GTGAGTCTTT...TACCTCTTGAAG/TCTTTCTTCAAC...GCCAG|GAA 1 1 6.68
47813533 GT-AG 0 2.2735112276886862e-05 528 rna-XM_027271556.1 8855937 3 49457483 49458010 Coffea arabica 13443 CAG|GTTTTATTTC...TCTCCTTTCACT/ACTTGTCTCATC...TGTAG|GTT 0 1 10.886
47813534 GT-AG 0 1.1733910576685904e-05 110 rna-XM_027271556.1 8855937 4 49458361 49458470 Coffea arabica 13443 TTG|GTACTTGCAG...TTATCTTTGCTC/TCTTTGCTCATT...TTTAG|GTT 2 1 22.126
47813535 GT-AG 0 1.000000099473604e-05 90 rna-XM_027271556.1 8855937 5 49458565 49458654 Coffea arabica 13443 AAG|GTACAAGTTT...TGGGTTTTAAAG/TAGTTGGTCATG...TTCAG|GTC 0 1 25.145
47813536 GT-AG 0 1.000000099473604e-05 602 rna-XM_027271556.1 8855937 6 49458749 49459350 Coffea arabica 13443 CAG|GTGTGATGTT...TATATTTTAATT/TTAATTCTCATT...ATCAG|ACG 1 1 28.163
47813537 GT-AG 0 1.000000099473604e-05 91 rna-XM_027271556.1 8855937 7 49459481 49459571 Coffea arabica 13443 AAG|GTAAGGGCAT...ATTTTTTTAAAG/AAGTTATTCATC...TGCAG|CAT 2 1 32.338
47813538 GT-AG 0 0.0001238288108735 82 rna-XM_027271556.1 8855937 8 49459624 49459705 Coffea arabica 13443 CTT|GTAAGTTTCT...TTGGTTTTCATT/TTGGTTTTCATT...TCCAG|GAA 0 1 34.008
47813539 GT-AG 0 0.000748634953703 93 rna-XM_027271556.1 8855937 9 49459750 49459842 Coffea arabica 13443 CAG|GTATTTGTTT...TTTTTTGTGATT/TTTTTTGTGATT...TTCAG|GAA 2 1 35.421
47813540 GT-AG 1 98.97384473393852 323 rna-XM_027271556.1 8855937 10 49459929 49460251 Coffea arabica 13443 CTC|GTATCCTTAA...ATTTCCTTATCC/AATTTCCTTATC...CACAG|AAA 1 1 38.182
47813541 GT-AG 0 0.0001428737125957 2385 rna-XM_027271556.1 8855937 11 49460687 49463071 Coffea arabica 13443 CAG|GTAATTTTGC...CCCTCTTTACCT/GCCCTCTTTACC...TGCAG|AAA 1 1 52.152
47813542 GT-AG 0 1.000000099473604e-05 596 rna-XM_027271556.1 8855937 12 49463614 49464209 Coffea arabica 13443 ACG|GTGCGTCTTT...TTTTTCTTTTTG/GCATTTCTAATA...TGCAG|AGT 0 1 69.557
47813543 GT-AG 0 1.000000099473604e-05 204 rna-XM_027271556.1 8855937 13 49465056 49465259 Coffea arabica 13443 ATG|GTGAACCCTG...ATTATGTTATTC/ATGTTATTCAAT...TTCAG|GGA 0 1 96.724

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