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)

12 rows where transcript_id = 24462861

✎ 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
133657761 GT-AG 0 1.000000099473604e-05 14097 rna-XM_004391555.2 24462861 1 15529317 15543413 Odobenus rosmarus 9707 AAA|GTAAGTGGAG...TTTTCCTTTTTC/TTCTTTTTCAAT...TTTAG|GAA 0 1 8.442
133657762 GT-AG 0 8.008592959874079e-05 4928 rna-XM_004391555.2 24462861 2 15524261 15529188 Odobenus rosmarus 9707 AAG|GTATGATTGG...CTAACTTTATAA/TAAATACTAACT...TGTAG|GTG 2 1 17.677
133657763 GT-AG 0 1.000000099473604e-05 7404 rna-XM_004391555.2 24462861 3 15516760 15524163 Odobenus rosmarus 9707 CTT|GTAAGTGTTT...AATGTGTTCTCT/ATGTATGTAAAT...TTCAG|GTT 0 1 24.675
133657764 GT-AG 0 1.000000099473604e-05 2454 rna-XM_004391555.2 24462861 4 15514208 15516661 Odobenus rosmarus 9707 CTG|GTAAGTAATT...TTGTTTTTAAAT/TTGTTTTTAAAT...TATAG|GTA 2 1 31.746
133657765 GT-AG 0 1.000000099473604e-05 15457 rna-XM_004391555.2 24462861 5 15498611 15514067 Odobenus rosmarus 9707 CAG|GTAAGGAAAA...TATTTTATAACA/TTATATTTTATA...AACAG|GTT 1 1 41.847
133657766 GT-AG 0 1.5550740337842604e-05 1795 rna-XM_004391555.2 24462861 6 15496757 15498551 Odobenus rosmarus 9707 ATG|GTCTGTATCA...TGTTCACTAATT/GCTGTGTTCACT...AACAG|TTC 0 1 46.104
133657767 GT-AG 0 1.000000099473604e-05 1312 rna-XM_004391555.2 24462861 7 15495362 15496673 Odobenus rosmarus 9707 ATG|GTAAGGGGAC...TTTTTCTGATTT/TTTTTTCTGATT...TTAAG|GTT 2 1 52.092
133657768 GT-AG 0 1.000000099473604e-05 2684 rna-XM_004391555.2 24462861 8 15492590 15495273 Odobenus rosmarus 9707 AAG|GTAATGGAAA...CTCTTTTTAATT/CTCTTTTTAATT...TTTAG|TTG 0 1 58.442
133657769 GT-AG 0 1.000000099473604e-05 685 rna-XM_004391555.2 24462861 9 15491836 15492520 Odobenus rosmarus 9707 ATT|GTGAGTTTTG...TTTTTTTTCATT/TTTTTTTTCATT...TTCAG|GCT 0 1 63.42
133657770 GT-AG 0 1.000000099473604e-05 1451 rna-XM_004391555.2 24462861 10 15490232 15491682 Odobenus rosmarus 9707 CAG|GTAAGATAAA...ACAACTTTAATG/ACAACTTTAATG...TTTAG|GAA 0 1 74.459
133657771 GT-AG 0 1.000000099473604e-05 2075 rna-XM_004391555.2 24462861 11 15488037 15490111 Odobenus rosmarus 9707 AAG|GTGTGTGTTT...GATTTTTTGAGA/AATTTGCTCATA...TGAAG|GAT 0 1 83.117
133657772 GT-AG 0 0.0006319391071118 4929 rna-XM_004391555.2 24462861 12 15483004 15487932 Odobenus rosmarus 9707 AAG|GTACTTTTAG...TTGGCCTTTTCT/AGGTCTCTCAAA...ATCAG|GGG 2 1 90.62

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