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

✎ 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
65073195 GT-AG 0 0.0001749630003943 14179 rna-XM_026118404.1 11997918 1 8945915 8960093 Dromaius novaehollandiae 8790 AGC|GTAAGTGTTA...TTATCTTTATTT/GTTATCTTTATT...CACAG|CAG 2 1 36.158
65073196 GT-AG 0 3.545741885000895e-05 3897 rna-XM_026118404.1 11997918 2 8941876 8945772 Dromaius novaehollandiae 8790 AAG|GTATTGTCTG...CTGTTGTCAACC/ACTGTGTTCAAT...TCTAG|GGG 0 1 40.877
65073197 GT-AG 0 2.2658429692878645e-05 2804 rna-XM_026118404.1 11997918 3 8938874 8941677 Dromaius novaehollandiae 8790 CAG|GTAACGTAAA...ACTACCTTTTTT/GAAAGTCTGACT...TTCAG|AGT 0 1 47.458
65073198 GT-AG 0 1.000000099473604e-05 5155 rna-XM_026118404.1 11997918 4 8933597 8938751 Dromaius novaehollandiae 8790 CAG|GTGGGTGACA...GCATATTTAACT/GCATATTTAACT...TGCAG|AGC 2 1 51.512
65073199 GT-AG 0 1.000000099473604e-05 11819 rna-XM_026118404.1 11997918 5 8921576 8933394 Dromaius novaehollandiae 8790 CAG|GTGAGCCCGC...TAACCTTTGTCT/GAGAAGTTAACC...TGCAG|ACT 0 1 58.225
65073200 GT-AG 0 1.000000099473604e-05 2932 rna-XM_026118404.1 11997918 6 8918484 8921415 Dromaius novaehollandiae 8790 CAG|GTAAGTAACT...GATGCCTTTTCC/ATCTTTCTCATA...TTTAG|ATA 1 1 63.543
65073201 GT-AG 0 1.000000099473604e-05 1155 rna-XM_026118404.1 11997918 7 8917218 8918372 Dromaius novaehollandiae 8790 ATG|GTAAGTAAGG...TTCAACTTGATA/TAAGTATTCAAC...TGTAG|ACT 1 1 67.232
65073202 GT-AG 0 1.000000099473604e-05 2415 rna-XM_026118404.1 11997918 8 8914665 8917079 Dromaius novaehollandiae 8790 TAG|GTAAGACAAA...TTGTTGTTGTTT/TCAGTACGCATT...GACAG|GTG 1 1 71.818
65073203 GT-AG 0 1.000000099473604e-05 1004 rna-XM_026118404.1 11997918 9 8913536 8914539 Dromaius novaehollandiae 8790 CAG|GTAAACCAAA...TTTGTATTAATA/TTTGTATTAATA...TAAAG|CAT 0 1 75.972
65073204 GT-AG 0 2.7283354070185222e-05 979 rna-XM_026118404.1 11997918 10 8912432 8913410 Dromaius novaehollandiae 8790 AAG|GTTTGTTCAT...CTTGCCTTGTCT/CCTTGTCTCATT...TCTAG|CTG 2 1 80.126
65073205 GT-AG 0 2.1917201916384055e-05 5819 rna-XM_026118404.1 11997918 11 8906558 8912376 Dromaius novaehollandiae 8790 GAG|GTAGGCCACA...ATGTTCATAATT/GTTATGTTCATA...TACAG|ATA 0 1 81.954
65073206 GC-AG 0 1.000000099473604e-05 1002 rna-XM_026118404.1 11997918 12 8905443 8906444 Dromaius novaehollandiae 8790 CAG|GCAGGTGTAC...TAGGTCTTGAGA/TAGGTCTTGAGA...ACTAG|GTC 2 1 85.71
65073207 GT-AG 0 1.000000099473604e-05 642 rna-XM_026118404.1 11997918 13 8904620 8905261 Dromaius novaehollandiae 8790 AAG|GTAGGTGCCT...TTCTCTTTTTCA/CTCTTTTTCAAA...TTCAG|TCT 0 1 91.725

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