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

✎ 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
35746864 GT-AG 0 0.0002279852127008 3212 rna-XM_021716139.1 6866862 2 8279 11490 Carlito syrichta 1868482 TTT|GTTCCAAAGA...TCACATTTGACC/CCAATTCTAACC...TGGAG|TGG 2 1 7.912
35746865 GT-AG 0 0.0052571593582564 122 rna-XM_021716139.1 6866862 3 11496 11617 Carlito syrichta 1868482 GCT|GTGTCACGCC...ATGTCCTGGAAG/AGCTTTGTCACA...TCCAG|ACT 1 1 8.146
35746866 GT-AG 0 1.000000099473604e-05 7501 rna-XM_021716139.1 6866862 4 11790 19290 Carlito syrichta 1868482 CAG|GTAAGGGTGA...TATTTTATGATG/TTTATGATGATT...TTTAG|GTG 2 1 16.199
35746867 GT-AG 0 0.0479583797734808 4511 rna-XM_021716139.1 6866862 5 19398 23908 Carlito syrichta 1868482 CCT|GTAAGCTTCA...CTGTTTTTGACG/CTGTTTTTGACG...TCCAG|CTG 1 1 21.208
35746868 GT-AG 0 1.000000099473604e-05 5647 rna-XM_021716139.1 6866862 6 24029 29675 Carlito syrichta 1868482 CAG|GTACGTGAAT...AGCCCCATGACC/TTCCTGCCGACC...CACAG|ACG 1 1 26.826
35746869 GT-AG 0 1.000000099473604e-05 13154 rna-XM_021716139.1 6866862 7 29877 43030 Carlito syrichta 1868482 CAG|GTACGTGGGG...GTTCTCATACTT/ATGGTTCTCATA...TTCAG|ATG 1 1 36.236
35746870 GT-AG 0 1.000000099473604e-05 8023 rna-XM_021716139.1 6866862 8 43188 51210 Carlito syrichta 1868482 ATG|GTGATTTCCA...ATAATTTTAAGT/TGTGTGTTCATC...TATAG|GAC 2 1 43.586
35746871 GT-AG 0 1.000000099473604e-05 6041 rna-XM_021716139.1 6866862 9 51339 57379 Carlito syrichta 1868482 ACG|GTAAGTAGTG...TTGTTTTTATTT/TTTTATTTCATC...AACAG|AGT 1 1 49.579
35746872 GT-AG 0 1.000000099473604e-05 680 rna-XM_021716139.1 6866862 10 57551 58230 Carlito syrichta 1868482 GTG|GTGAGTTGCC...ATTTTCTTCCCT/GAAATACTCATA...CCTAG|CTC 1 1 57.584
35746873 GT-AG 0 1.000000099473604e-05 2044 rna-XM_021716139.1 6866862 11 58450 60493 Carlito syrichta 1868482 TTG|GTGAGTGCTC...ACATTTCTATTT/CACATTTCTATT...TGTAG|GTG 1 1 67.837
35746874 GT-AG 0 1.000000099473604e-05 15794 rna-XM_021716139.1 6866862 12 60734 76527 Carlito syrichta 1868482 ATG|GTAAGTGTGA...TTGGATTTAACA/TTGGATTTAACA...TACAG|AGA 1 1 79.073
35746875 GT-AG 0 1.000000099473604e-05 1253 rna-XM_021716139.1 6866862 13 76753 78005 Carlito syrichta 1868482 ATG|GTGAATATCC...GCCATTTTAATT/TTAATTTTAAAT...TTTAG|GAA 1 1 89.607
35746876 GT-AG 0 1.000000099473604e-05 880 rna-XM_021716139.1 6866862 14 78140 79019 Carlito syrichta 1868482 GAG|GTAATGCAGC...TTCCTGTTGATT/TTGCTTCTCATG...AATAG|GTC 0 1 95.88

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