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)

11 rows where transcript_id = 310721

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
1930552 GT-AG 0 1.6953754976495226e-05 97 Acora.01G117500.1.v1.1 310721 1 25526048 25526144 Acorus americanus 263995 TTG|GTTCGCGATT...GATTTTTTATTT/CGATTTTTTATT...TTTAG|GCA 2 1 8.429
1930553 GT-AG 0 0.29201225961859 77 Acora.01G117500.1.v1.1 310721 2 25525843 25525919 Acorus americanus 263995 TCT|GTATGTATTC...GTTTTTTTAGTG/AGTTTTTTTAGT...TGCAG|TTT 1 1 12.532
1930554 GT-AG 0 9.712391574868798e-05 633 Acora.01G117500.1.v1.1 310721 3 25525147 25525779 Acorus americanus 263995 AAT|GTAATCGATC...TCATGTTTAATA/TCATGTTTAATA...TCCAG|ATG 1 1 14.551
1930555 GT-AG 0 1.000000099473604e-05 123 Acora.01G117500.1.v1.1 310721 4 25524902 25525024 Acorus americanus 263995 CAG|GTCAGAACTA...GTGCTTTTAACG/ACGGTGTTCACC...TGCAG|GCT 0 1 18.462
1930556 GT-AG 0 1.000000099473604e-05 77 Acora.01G117500.1.v1.1 310721 5 25524709 25524785 Acorus americanus 263995 AAG|GTTAGGAACA...TGATTTTTGATA/TCATTTTTCATT...TGCAG|CTT 2 1 22.179
1930557 GT-AG 0 0.0012440977453954 705 Acora.01G117500.1.v1.1 310721 6 25523196 25523900 Acorus americanus 263995 AAG|GTAGCATTTC...CTTCTTTTGTCA/TTGTTTGTCACT...AAAAG|GGA 0 1 48.077
1930558 GT-AG 0 0.0002952581808271 633 Acora.01G117500.1.v1.1 310721 7 25521831 25522463 Acorus americanus 263995 GAG|GTTTGCTCCT...TGCGATTTAACT/TGTGTTGTCACT...TCTAG|GTA 0 1 71.538
1930559 GT-AG 0 1.000000099473604e-05 1981 Acora.01G117500.1.v1.1 310721 8 25519628 25521608 Acorus americanus 263995 GCG|GTAAGAAAGT...GAGACCTTATTT/TTCTGCCTCATA...TGAAG|GTC 0 1 78.654
1930560 GT-AG 0 1.000000099473604e-05 94 Acora.01G117500.1.v1.1 310721 9 25519438 25519531 Acorus americanus 263995 GCG|GTAATGATTC...CATTCTCTGATT/CATTCTCTGATT...TGCAG|GAT 0 1 81.731
1930561 GT-AG 0 1.000000099473604e-05 243 Acora.01G117500.1.v1.1 310721 10 25519000 25519242 Acorus americanus 263995 CAG|GTAAGTTCGT...GCATCTTTGGTC/TAAATGTTCAAT...TACAG|GTC 0 1 87.981
1930562 GT-AG 0 3.930715879070789e-05 467 Acora.01G117500.1.v1.1 310721 11 25518419 25518885 Acorus americanus 263995 CAG|GTGCATTTTG...TTCTTTTTAAAA/TTTTTGCTTATA...TGCAG|TCG 0 1 91.635

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