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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
125872078 GT-AG 0 1.000000099473604e-05 1492 rna-XM_037678884.1 23148269 1 56016527 56018018 Nematolebias whitei 451745 GAG|GTGAAGAACA...ATATTCTTTTCT/TCTTGGTTTATT...TTTAG|ACT 0 1 1.683
125872079 GC-AG 0 1.000000099473604e-05 89 rna-XM_037678884.1 23148269 2 56016345 56016433 Nematolebias whitei 451745 GAG|GCAAGACAGA...CATGCTTTAATC/CTCATTTTCATT...CGTAG|ACT 0 1 4.055
125872080 GT-AG 0 1.000000099473604e-05 116 rna-XM_037678884.1 23148269 3 56016079 56016194 Nematolebias whitei 451745 CCG|GTCAGTGCCC...ATGATCTAATCT/AATGATCTAATC...TCTAG|CTC 0 1 7.881
125872081 GT-AG 0 1.000000099473604e-05 86 rna-XM_037678884.1 23148269 4 56015912 56015997 Nematolebias whitei 451745 AAC|GTAGGGTTAA...TTGGACTGAATA/GTTGGACTGAAT...CTCAG|AGC 0 1 9.946
125872082 GT-AG 0 1.000000099473604e-05 180 rna-XM_037678884.1 23148269 5 56013721 56013900 Nematolebias whitei 451745 TAG|GTGAGCTAGG...CTTTCTTTGAAT/CTTTCTTTGAAT...TGAAG|GTA 1 1 61.234
125872083 GT-AG 0 2.7576146676653413e-05 780 rna-XM_037678884.1 23148269 6 56012887 56013666 Nematolebias whitei 451745 AAG|GTAATTATTA...GTGCTTTTATCC/CTTGTGCTGATG...ATCAG|TGA 1 1 62.612
125872084 GT-AG 0 1.000000099473604e-05 258 rna-XM_037678884.1 23148269 7 56012568 56012825 Nematolebias whitei 451745 GAG|GTGAGTTACC...TGAGGGTTAATT/GGTTAATTCACC...TGCAG|AAC 2 1 64.167
125872085 GT-AG 0 1.000000099473604e-05 165 rna-XM_037678884.1 23148269 8 56012338 56012502 Nematolebias whitei 451745 CAG|GTAAATCAGT...CTTTCTTTCCCT/CGAATGCTGAGT...TTTAG|CGC 1 1 65.825
125872086 GT-AG 0 1.000000099473604e-05 86 rna-XM_037678884.1 23148269 9 56011552 56011637 Nematolebias whitei 451745 AAG|GTTAGTCCTT...AGTTTCTTATTT/GAGTTTCTTATT...TGTAG|GTA 2 1 83.678
125872087 GT-AG 0 3.3073700625643805e-05 131 rna-XM_037678884.1 23148269 10 56011235 56011365 Nematolebias whitei 451745 CAG|GTATAAAACA...TCTTTCTTTTTT/AAATAAATAACC...CCCAG|CCC 2 1 88.421
125872088 GT-AG 0 0.0002025076541288 69 rna-XM_037678884.1 23148269 11 56011087 56011155 Nematolebias whitei 451745 ATT|GTAAGTTTAT...GTATTTTTACTG/CGTATTTTTACT...CCTAG|GAG 0 1 90.436
125872089 GT-AG 0 1.000000099473604e-05 307 rna-XM_037678884.1 23148269 12 56010658 56010964 Nematolebias whitei 451745 CGG|GTTAGTACAT...CATATTTTAAAC/CGTTGTTTTATA...CACAG|GGA 2 1 93.548
125872090 GT-AG 0 1.000000099473604e-05 90 rna-XM_037678884.1 23148269 13 56010416 56010505 Nematolebias whitei 451745 TGG|GTGGGCATGG...CTTTCCCTACCT/AGTTTATTTATA...ACCAG|ATT 1 1 97.424

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