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

✎ 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
21481226 GT-AG 0 1.000000099473604e-05 170 rna-XM_039035570.1 4157770 1 16750346 16750515 Benincasa hispida 102211 TAG|GTTATCTCTT...TTTGTTATAATT/TTTGTTATAATT...TATAG|CCA 2 1 2.576
21481227 GT-AG 0 0.0006579686480628 819 rna-XM_039035570.1 4157770 2 16749434 16750252 Benincasa hispida 102211 TAG|GTAACGATGA...TCTGCCTTAATG/AGCTATTTTATG...GGTAG|GCC 2 1 4.697
21481228 GT-AG 0 8.299697817434175e-05 364 rna-XM_039035570.1 4157770 3 16748854 16749217 Benincasa hispida 102211 AAG|GTATGGTTGT...GTCGTTTTACGT/TGTCGTTTTACG...GCCAG|ACC 2 1 9.622
21481229 GT-AG 0 0.0001274767184463 101 rna-XM_039035570.1 4157770 4 16748552 16748652 Benincasa hispida 102211 ACG|GTAAATTTTA...TGCTGTTTAAAT/TTTCAGTTTATT...GTTAG|AGA 2 1 14.204
21481230 GT-AG 0 0.0010103826058474 1035 rna-XM_039035570.1 4157770 5 16747260 16748294 Benincasa hispida 102211 CAG|GTACTTTGCT...CTGTTCTTATCG/ACTGTTCTTATC...TGTAG|AGT 1 1 20.064
21481231 GT-AG 0 0.0061505181364911 91 rna-XM_039035570.1 4157770 6 16747068 16747158 Benincasa hispida 102211 AAG|GTAGTCTTCA...AATTTCTTGATC/AAATTTCTCAAT...TGTAG|TAT 0 1 22.367
21481232 GT-AG 0 0.154571312001723 4351 rna-XM_039035570.1 4157770 7 16742501 16746851 Benincasa hispida 102211 ATG|GTATGCTCTT...GTTCCCCTAATT/TGTTTAGTTATT...CTCAG|ATT 0 1 27.291
21481233 GT-AG 0 1.000000099473604e-05 84 rna-XM_039035570.1 4157770 8 16742189 16742272 Benincasa hispida 102211 AAA|GTAAGTTAAA...ATTTCGTTATAT/CGTTATATTACA...GTCAG|GTT 0 1 32.49
21481234 GT-AG 0 4.605771101954677e-05 105 rna-XM_039035570.1 4157770 9 16741992 16742096 Benincasa hispida 102211 TAG|GTAGTTTCCT...ACTTCATTATTC/TTCTTTCTAATA...TCCAG|AGC 2 1 34.587
21481235 GT-AG 0 5.701385074998086e-05 2346 rna-XM_039035570.1 4157770 10 16739552 16741897 Benincasa hispida 102211 AAG|GTAATTATTA...TTGTTCTTATTA/CTTGTTCTTATT...ATCAG|TTG 0 1 36.731
21481236 GT-AG 0 0.0150399459294712 122 rna-XM_039035570.1 4157770 11 16739337 16739458 Benincasa hispida 102211 GAG|GTATTTTTCC...TGTTTCTGATCA/TTGTTTCTGATC...ATCAG|GAA 0 1 38.851
21481237 GT-AG 0 1.000000099473604e-05 82 rna-XM_039035570.1 4157770 12 16738413 16738494 Benincasa hispida 102211 AAG|GTTGTTGGTT...ACATTTTGGATT/TATTTGCTTATG...TTCAG|GTT 2 1 58.048
21481238 GT-AG 0 0.000153805163608 792 rna-XM_039035570.1 4157770 13 16737506 16738297 Benincasa hispida 102211 CAT|GTAAGGTTCA...CACTTCTTAACA/CACTTCTTAACA...TGTAG|AAA 0 1 60.67

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