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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
120576407 GT-AG 0 0.0002493153632348 4774 rna-XM_029218527.1 22245993 2 5995 10768 Monodon monoceros 40151 TTG|GTAAATTACG...AATCCTTTAATG/GTAATTTTAAAT...TGCAG|TCA 2 1 18.774
120576408 GT-AG 0 0.0005513242288072 1060 rna-XM_029218527.1 22245993 3 10992 12051 Monodon monoceros 40151 TCG|GTATGATTGA...GATATATTGATT/GATATATTGATT...TCCAG|AAG 0 1 32.87
120576409 GT-AG 0 0.0002842576748997 399 rna-XM_029218527.1 22245993 4 12143 12541 Monodon monoceros 40151 GAT|GTATAGAATA...ACTTCTTTCTCC/CAGGTACTTACA...TTTAG|ATG 1 1 38.622
120576410 GT-AG 0 3.473157723111054e-05 2802 rna-XM_029218527.1 22245993 5 12609 15410 Monodon monoceros 40151 CAT|GTAAGTTTGT...ATGTCTTCAGTG/ACCATTTTCATT...TTAAG|GAG 2 1 42.857
120576411 GT-AG 0 2.787893331823511e-05 92 rna-XM_029218527.1 22245993 6 15528 15619 Monodon monoceros 40151 CTT|GTAAGTAATA...TTATTTTTATTC/ATTATTTTTATT...TTTAG|CCG 2 1 50.253
120576412 GT-AG 0 1.268842935178605e-05 206 rna-XM_029218527.1 22245993 7 15787 15992 Monodon monoceros 40151 ATT|GTAAGTATAC...GTCTTTTTGTTC/GTGAAACTAATA...TATAG|TTT 1 1 60.809
120576413 GT-AG 0 2.8215208881078636e-05 250 rna-XM_029218527.1 22245993 8 16088 16337 Monodon monoceros 40151 ATG|GTAAGTTACA...GTTTACTTAACT/TCTTTATTGATC...TCTAG|AAA 0 1 66.814
120576414 GT-AG 0 1.000000099473604e-05 2773 rna-XM_029218527.1 22245993 9 16468 19240 Monodon monoceros 40151 TGG|GTTAGTAGAT...TTGGTTTTGTTT/TGTTGCATAATA...AATAG|CTT 1 1 75.032
120576415 GT-AG 0 0.0010749617631621 2741 rna-XM_029218527.1 22245993 10 19324 22064 Monodon monoceros 40151 CAG|GTATGTATTT...TTTTTCCTATTT/CTTTTTCCTATT...TTTAG|ACT 0 1 80.278
120576416 GT-AG 0 0.821617422764063 725 rna-XM_029218527.1 22245993 11 22145 22869 Monodon monoceros 40151 ACG|GTATGCTTTT...TCTTTTTTAATC/TCTTTTTTAATC...TGTAG|GAA 2 1 85.335
120576417 GT-AG 0 1.000000099473604e-05 81 rna-XM_029218527.1 22245993 12 22961 23041 Monodon monoceros 40151 AAG|GTAAAACAAC...TATTTTTTAATG/ACTGTTTTAACT...CTCAG|GAA 0 1 91.087
120576418 GT-AG 0 1.000000099473604e-05 2815 rna-XM_029218527.1 22245993 1 3019 5833 Monodon monoceros 40151 GAG|GTAAGGTTTC...TCACTTTTCATT/TCACTTTTCATT...AACAG|ATG   0 8.597

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