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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
38393323 GT-AG 0 1.000000099473604e-05 14255 Ceric.01G130700.1.v2.1 7346940 1 256409538 256423792 Ceratopteris richardii 49495 AAG|GTTGGACCTA...TTCTACTTAATT/TTACTATTTATT...TTCAG|GAG 0 1 4.319
38393324 GT-AG 0 1.000000099473604e-05 343 Ceric.01G130700.1.v2.1 7346940 2 256423862 256424204 Ceratopteris richardii 49495 CAA|GTAAGCAAGT...ATCACTCTGATT/ATCACTCTGATT...TGCAG|TAC 0 1 5.825
38393325 GC-AG 0 1.000000099473604e-05 290 Ceric.01G130700.1.v2.1 7346940 3 256424328 256424617 Ceratopteris richardii 49495 CAG|GCATGACTCG...GTCTCTTTGGTC/TCAAAATTCAAT...CACAG|CTG 0 1 8.508
38393326 GT-AG 0 0.025041881106203 88 Ceric.01G130700.1.v2.1 7346940 4 256424664 256424751 Ceratopteris richardii 49495 ATG|GTATGCTGTA...TATGTATTAACG/TATGTATTAACG...TGCAG|GGG 1 1 9.511
38393327 GT-AG 0 1.000000099473604e-05 86 Ceric.01G130700.1.v2.1 7346940 5 256424913 256424998 Ceratopteris richardii 49495 GAG|GTCAAAATTC...TGTTTTTTGATG/TGTTTTTTGATG...TACAG|AGG 0 1 13.024
38393328 GT-AG 0 4.539063100668828e-05 2664 Ceric.01G130700.1.v2.1 7346940 6 256425079 256427742 Ceratopteris richardii 49495 TGG|GTGTGTTCTC...GTATATTTATTT/AGTTGTCTCATA...TGCAG|TTG 2 1 14.769
38393329 GT-AG 0 0.5029069931680763 83 Ceric.01G130700.1.v2.1 7346940 7 256427849 256427931 Ceratopteris richardii 49495 AAG|GTTTCCTGTT...ATGCTCTTGAAA/CCAATATTAATA...AATAG|GTT 0 1 17.081
38393330 GT-AG 0 1.000000099473604e-05 80 Ceric.01G130700.1.v2.1 7346940 8 256428109 256428188 Ceratopteris richardii 49495 AGG|GTGAGTAGCC...AGCTTTTTATCT/AAGCTTTTTATC...TACAG|GTG 0 1 20.942
38393331 GT-AG 0 0.0008880508064548 30063 Ceric.01G130700.1.v2.1 7346940 9 256428480 256458542 Ceratopteris richardii 49495 AAG|GTACTTTTTA...TATGTCTCAGTT/TTGGTGTTTACC...TACAG|GTT 0 1 27.291
38393332 GT-AG 0 1.000000099473604e-05 88 Ceric.01G130700.1.v2.1 7346940 10 256461330 256461417 Ceratopteris richardii 49495 CAG|GTGCTTTGCC...ATGTTCTGACCA/TATGTTCTGACC...TTTAG|GTT 0 1 88.089
38393333 GT-AG 0 1.000000099473604e-05 86 Ceric.01G130700.1.v2.1 7346940 11 256461672 256461757 Ceratopteris richardii 49495 AAG|GTTGTATCTC...ATTTTCTCAAAT/AATTTTCTCAAA...TGCAG|ACC 2 1 93.63
38393334 GT-AG 0 1.000000099473604e-05 755 Ceric.01G130700.1.v2.1 7346940 12 256461864 256462618 Ceratopteris richardii 49495 CAG|GTAATTCTCT...GGGGCTTGAATT/CTGTTACTAACA...ACCAG|GAA 0 1 95.942

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