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

✎ 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
40476071 GT-AG 0 1.000000099473604e-05 13304 rna-XM_030787657.1 7679235 1 6970586 6983889 Chanos chanos 29144 AAG|GTAAGAGGCA...TATGTGTGCATA/TATGTGTGCATA...TACAG|GAC 0 1 5.071
40476072 GT-AG 0 1.000000099473604e-05 681 rna-XM_030787657.1 7679235 2 6984142 6984822 Chanos chanos 29144 CAG|GTGACGTTGC...AAAGAGTTAATT/AAAGAGTTAATT...CCCAG|GCT 0 1 8.908
40476073 GT-AG 0 1.000000099473604e-05 3837 rna-XM_030787657.1 7679235 3 6986254 6990090 Chanos chanos 29144 GAG|GTGAAAACCT...GGTGGTTTAATA/GGTGGTTTAATA...TGCAG|GGT 0 1 30.699
40476074 GT-AG 0 1.000000099473604e-05 5329 rna-XM_030787657.1 7679235 4 6990214 6995542 Chanos chanos 29144 CTC|GTGAGTCAAA...CATGCATTATGT/ATGTCATGCATT...TGCAG|AGC 0 1 32.572
40476075 GT-AG 0 1.000000099473604e-05 1597 rna-XM_030787657.1 7679235 5 6995640 6997236 Chanos chanos 29144 CAG|GTACTGCGCC...GTATTAGTGATG/GTATTAGTGATG...CGCAG|GCC 1 1 34.049
40476076 GT-AG 0 1.000000099473604e-05 20274 rna-XM_030787657.1 7679235 6 6997401 7017674 Chanos chanos 29144 GAG|GTAAAACCCG...GTGCTCATGGTT/GTGGTGCTCATG...GATAG|GTG 0 1 36.546
40476077 GT-AG 0 0.0003109933771638 2793 rna-XM_030787657.1 7679235 7 7017809 7020601 Chanos chanos 29144 CAG|GTATGGTACT...GCTTTTTTAACC/GCTTTTTTAACC...TCCAG|CCT 2 1 38.587
40476078 GT-AG 0 1.000000099473604e-05 19299 rna-XM_030787657.1 7679235 8 7020723 7040021 Chanos chanos 29144 AAG|GTTAGTGGAC...TGTCTCTGAATT/TTGTCTCTGAAT...TGCAG|GGT 0 1 40.429
40476079 GT-AG 0 1.000000099473604e-05 5195 rna-XM_030787657.1 7679235 9 7040169 7045363 Chanos chanos 29144 CAA|GTGAGTCTCA...TTCTCTTTCTCT/ATGATTTTTATG...TTCAG|AAA 0 1 42.668
40476080 GT-AG 0 1.000000099473604e-05 6735 rna-XM_030787657.1 7679235 10 7045610 7052344 Chanos chanos 29144 AGG|GTAAGAGAGC...CTTCTCTTCTCT/TCTCTTCTCTTC...TGCAG|GCT 0 1 46.414
40476081 GT-AG 0 1.000000099473604e-05 2657 rna-XM_030787657.1 7679235 11 7052558 7055214 Chanos chanos 29144 CAG|GTCACACACA...TTTCTTTTAGAC/TTTTTTTTTATC...TCTAG|GTC 0 1 49.657
40476082 GT-AG 0 5.727379043929141e-05 806 rna-XM_030787657.1 7679235 12 7058323 7059128 Chanos chanos 29144 CAG|GTACGTCTTG...TTTCTCTTCATC/TTTCTCTTCATC...CATAG|CTG 0 1 96.985
40476083 GT-AG 0 1.000000099473604e-05 1316 rna-XM_030787657.1 7679235 13 7059246 7060561 Chanos chanos 29144 AGG|GTAGGTAGGA...TGATCCCTGACC/GCTGTTCTGACG...CTCAG|ATG 0 1 98.767

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