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

✎ 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
47813577 GT-AG 0 0.0001106259321262 723 rna-XM_027258203.1 8855942 1 47602901 47603623 Coffea arabica 13443 AAG|GTTTGTTCCC...CTCTTCTCAATT/TTGTAACTTATA...AACAG|AGA 0 1 8.641
47813578 GT-AG 0 1.1738404982589127e-05 1117 rna-XM_027258203.1 8855942 2 47601674 47602790 Coffea arabica 13443 CAG|GTAATTTGGT...ATTTCTATAACT/ATTTCTATAACT...CGTAG|GTA 2 1 12.201
47813579 GT-AG 0 1.000000099473604e-05 112 rna-XM_027258203.1 8855942 3 47601499 47601610 Coffea arabica 13443 TAA|GTAAGAATTA...CTGTCTTTATTA/ACTGTCTTTATT...CAAAG|GGA 2 1 14.239
47813580 GT-AG 0 1.000000099473604e-05 134 rna-XM_027258203.1 8855942 4 47601172 47601305 Coffea arabica 13443 CGG|GTACAAACGA...GTATCATTAATT/TCTTGTATCATT...GGTAG|GGA 0 1 20.485
47813581 GT-AG 0 2.312375948078881e-05 91 rna-XM_027258203.1 8855942 5 47600976 47601066 Coffea arabica 13443 GCG|GTAAGTCTTG...TGTTTATTAATT/TGTTTATTAATT...AATAG|GTA 0 1 23.883
47813582 GT-AG 0 3.0611342572116875e-05 69 rna-XM_027258203.1 8855942 6 47600782 47600850 Coffea arabica 13443 AGA|GTAAGTTAAT...TTACACTTATTA/TTTACACTTATT...TTCAG|CTA 2 1 27.929
47813583 GT-AG 0 0.0003745028559852 1198 rna-XM_027258203.1 8855942 7 47599001 47600198 Coffea arabica 13443 CAG|GTATGTACCT...CATTGCTTGACA/CAGATGCTTATA...GACAG|CTC 0 1 46.796
47813584 GT-AG 0 0.0024199770611336 173 rna-XM_027258203.1 8855942 8 47598762 47598934 Coffea arabica 13443 TCA|GTATGGCCTT...TAGCTCTTATTT/TGCTTTCTTATG...TTCAG|GTC 0 1 48.932
47813585 GT-AG 0 1.000000099473604e-05 669 rna-XM_027258203.1 8855942 9 47598016 47598684 Coffea arabica 13443 GAG|GTAATAGCTA...TTATCCTGATCT/GTTATCCTGATC...TGCAG|AAT 2 1 51.424
47813586 GT-AG 0 0.0345332983851496 594 rna-XM_027258203.1 8855942 10 47597140 47597733 Coffea arabica 13443 GTG|GTATTTTCCT...AATCTCTTAAAC/TCTATATTCATT...TTTAG|GTG 2 1 60.55
47813587 GT-AG 0 0.000103367189607 94 rna-XM_027258203.1 8855942 11 47596706 47596799 Coffea arabica 13443 GAG|GTATTGCTTC...AACACCTGAATG/GATTTTGTCAAA...TGTAG|GGT 0 1 71.553
47813588 GT-AG 0 0.0015565174904801 183 rna-XM_027258203.1 8855942 12 47596370 47596552 Coffea arabica 13443 CAG|GTTTTCTGTA...TAGGTTTTACTC/TTAGGTTTTACT...TGCAG|AAT 0 1 76.505
47813589 GT-AG 0 0.0068940218327763 172 rna-XM_027258203.1 8855942 13 47595661 47595832 Coffea arabica 13443 GAG|GTAGCCAATC...ACATTCTAAATG/AACATTCTAAAT...GCAAG|GAA 0 1 93.883

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