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)

14 rows where transcript_id = 4157740

✎ 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
21480675 GT-AG 0 9.334450570392916e-05 307 rna-XM_039048235.1 4157740 1 8992960 8993266 Benincasa hispida 102211 GAG|GTACGCGATA...ACACCTTTAAAT/GATTTACTCATA...TTCAG|GTT 1 1 5.072
21480676 GT-AG 0 1.000000099473604e-05 550 rna-XM_039048235.1 4157740 2 8989773 8990322 Benincasa hispida 102211 CAG|GTGATTATAT...CAATCCTCAATT/TAGTGGTTCATT...ATTAG|GCA 1 1 40.359
21480677 GT-AG 0 0.0020536043262328 1330 rna-XM_039048235.1 4157740 3 8988013 8989342 Benincasa hispida 102211 AAG|GTACTCTGCA...ACTTTCTTGCTT/TGATAATTTATT...TCTAG|GTA 2 1 46.113
21480678 GT-AG 0 1.000000099473604e-05 534 rna-XM_039048235.1 4157740 4 8987250 8987783 Benincasa hispida 102211 AGG|GTAATACTTG...TTCTTCTTATAT/CTTCTTCTTATA...TGTAG|ATG 0 1 49.177
21480679 GT-AG 0 2.3954876947228564e-05 139 rna-XM_039048235.1 4157740 5 8986946 8987084 Benincasa hispida 102211 CAG|GTGCTCCTTT...TCCCCTTTAAAT/TTTCATTTAATT...TTCAG|GAG 0 1 51.385
21480680 GT-AG 0 1.000000099473604e-05 444 rna-XM_039048235.1 4157740 6 8986229 8986672 Benincasa hispida 102211 GAG|GTGCTCCATT...TTTTCTTTTATT/TTTTCTTTTATT...TTCAG|TGG 0 1 55.038
21480681 GT-AG 0 0.0004145444658351 1101 rna-XM_039048235.1 4157740 7 8984882 8985982 Benincasa hispida 102211 CCT|GTAAGTTTAT...CTTTTCTTATGA/TTATGATTGATT...TTAAG|CTT 0 1 58.33
21480682 GT-AG 0 1.000000099473604e-05 105 rna-XM_039048235.1 4157740 8 8984387 8984491 Benincasa hispida 102211 ATG|GTAAGTGAAT...ACTTTTTTAATA/ATAATATTCATT...ATCAG|ATG 0 1 63.549
21480683 GT-AG 0 0.0003162478531795 231 rna-XM_039048235.1 4157740 9 8982797 8983027 Benincasa hispida 102211 GAG|GTAATTTTCA...GCGTTCTTAGTG/AAAGCTTTGATC...GGTAG|GCA 0 1 81.734
21480684 GT-AG 0 1.000000099473604e-05 9145 rna-XM_039048235.1 4157740 10 8973595 8982739 Benincasa hispida 102211 AAG|GTCAGTTGTC...TGGTTTTTGATC/TGGTTTTTGATC...TTCAG|GGT 0 1 82.497
21480685 GT-AG 0 4.547080290426784e-05 153 rna-XM_039048235.1 4157740 11 8973007 8973159 Benincasa hispida 102211 GAG|GTATGAATTA...TGTTCTTTGGAT/TACTCATTTACT...TGCAG|TTC 0 1 88.318
21480686 GT-AG 0 0.0135590914756982 355 rna-XM_039048235.1 4157740 12 8972428 8972782 Benincasa hispida 102211 ATC|GTATGTGGTT...TTCTTCTTAGTG/TTTCTTCTTAGT...TGCAG|GGA 2 1 91.315
21480687 GT-AG 0 0.0007648408127978 441 rna-XM_039048235.1 4157740 13 8971853 8972293 Benincasa hispida 102211 AAG|GTATTATTAA...AGCATCTTACTT/ACTTCTTTTACT...TGAAG|GTG 1 1 93.109
21480688 GT-AG 0 1.1464674436350337e-05 209 rna-XM_039048235.1 4157740 14 8971216 8971424 Benincasa hispida 102211 CGG|GTAATTTCTT...AAGCCATTGAAT/AACTCTCTCACA...TGCAG|GCT 0 1 98.836

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