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

✎ 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
38394080 GT-AG 0 1.6097508996927806e-05 252 Ceric.01G129300.1.v2.1 7347018 1 250010356 250010607 Ceratopteris richardii 49495 CAG|GTACGTGTAT...ATGATTTTAATG/ATGATTTTAATG...TGCAG|AGA 2 1 29.578
38394081 GT-AG 0 1.000000099473604e-05 7171 Ceric.01G129300.1.v2.1 7347018 2 250002872 250010042 Ceratopteris richardii 49495 CAG|GTAATGCTGT...GTTTCCATGATC/TAGATTCTCATG...TACAG|GAA 0 1 42.785
38394082 GT-AG 0 6.09247206398058 89 Ceric.01G129300.1.v2.1 7347018 3 250002636 250002724 Ceratopteris richardii 49495 AAT|GTATACTCAG...AGTTCCTTAACT/CTTAACTTGATT...GCTAG|GTG 0 1 48.987
38394083 GT-AG 0 0.0142346400566931 146 Ceric.01G129300.1.v2.1 7347018 4 250002401 250002546 Ceratopteris richardii 49495 CAG|GTATTTTTCA...ATGATGTTAATT/ATGATGTTAATT...GACAG|ACC 2 1 52.743
38394084 GT-AG 0 0.0005174633344235 258 Ceric.01G129300.1.v2.1 7347018 5 250002050 250002307 Ceratopteris richardii 49495 CTG|GTTTGTTCTG...GTACTTTTAACA/TCAATTCTCATG...TTCAG|GAT 2 1 56.667
38394085 GT-AG 0 1.000000099473604e-05 107 Ceric.01G129300.1.v2.1 7347018 6 250001816 250001922 Ceratopteris richardii 49495 CAG|GTGATTCCAA...GTTTTCTTGCTG/TTCTTGCTGATT...TGCAG|TTG 0 1 62.025
38394086 GT-AG 0 1.000000099473604e-05 2858 Ceric.01G129300.1.v2.1 7347018 7 249998893 250001750 Ceratopteris richardii 49495 AAG|GTTTGTGCTC...TTTATTCTAATG/TTTATTCTAATG...CACAG|AGC 2 1 64.768
38394087 GT-AG 0 0.0016095691075992 100 Ceric.01G129300.1.v2.1 7347018 8 249998618 249998717 Ceratopteris richardii 49495 AAG|GTACTCTGAT...TGCATTTTAATG/GATATGTTAATA...TACAG|GAA 0 1 72.152
38394088 GT-AG 0 0.0001135610805137 85 Ceric.01G129300.1.v2.1 7347018 9 249998338 249998422 Ceratopteris richardii 49495 TCA|GTAAGTGTGC...AGTGCCTTACTG/CTGAGTTTCATC...TTCAG|TCA 0 1 80.38
38394089 GT-AG 0 7.324407438409268e-05 628 Ceric.01G129300.1.v2.1 7347018 10 249997662 249998289 Ceratopteris richardii 49495 GAG|GTATGTACCA...GGATGCTTACTG/TGGATGCTTACT...TGTAG|ATT 0 1 82.405
38394090 GT-AG 0 1.000000099473604e-05 259 Ceric.01G129300.1.v2.1 7347018 11 249997265 249997523 Ceratopteris richardii 49495 AAG|GTGATTTCAG...GAAGTCTTAAAT/ATTGTTCTGAGT...TTCAG|ATT 0 1 88.228
38394091 GT-AG 0 0.00036353345309 108 Ceric.01G129300.1.v2.1 7347018 12 249997074 249997181 Ceratopteris richardii 49495 CAG|GTATTGTAAT...GATTCTTTATAT/GGATTCTTTATA...TTCAG|GGA 2 1 91.73
38394092 GT-AG 0 0.0012433375928998 161 Ceric.01G129300.1.v2.1 7347018 13 249996797 249996957 Ceratopteris richardii 49495 AGG|GTAAGCTTTT...CTCGTTTTGATT/TTTTGATTAATT...TGCAG|ATG 1 1 96.624

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