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

✎ 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
38393882 GT-AG 0 1.000000099473604e-05 83 Ceric.01G109800.1.v2.1 7346993 1 208117621 208117703 Ceratopteris richardii 49495 TAG|GTGAGCATTC...AGTTTTGTAATA/AGTTTTGTAATA...CGCAG|ATT 2 1 13.866
38393883 GT-AG 0 8.346987589427772e-05 82 Ceric.01G109800.1.v2.1 7346993 2 208117865 208117946 Ceratopteris richardii 49495 GAG|GTATGAATCG...GGGTGCTTGACA/GGGTGCTTGACA...TGCAG|ACA 1 1 20.085
38393884 GT-AG 0 1.000000099473604e-05 96 Ceric.01G109800.1.v2.1 7346993 3 208118091 208118186 Ceratopteris richardii 49495 ATT|GTGATCCTAC...AGATCAGTAACG/ACGCAACTGAAA...CAAAG|TGG 1 1 25.647
38393885 GT-AG 0 1.000000099473604e-05 132 Ceric.01G109800.1.v2.1 7346993 4 208118310 208118441 Ceratopteris richardii 49495 ACC|GTGAGTACCA...TGTATCTAAAAT/TTGTATCTAAAA...TGCAG|GCC 1 1 30.398
38393886 GT-AG 0 0.2158012141706656 139 Ceric.01G109800.1.v2.1 7346993 5 208118571 208118709 Ceratopteris richardii 49495 AAG|GTATCCGCGA...ATCCACTTAAAT/AATATTATGATC...TGTAG|AAG 1 1 35.38
38393887 GT-AG 0 0.000433008000921 80 Ceric.01G109800.1.v2.1 7346993 6 208118883 208118962 Ceratopteris richardii 49495 GCC|GTAAGTTTCG...TGAGACTTAAAC/CAAATGCTTACA...TGCAG|GAA 0 1 42.063
38393888 GT-AG 0 1.000000099473604e-05 87 Ceric.01G109800.1.v2.1 7346993 7 208119287 208119373 Ceratopteris richardii 49495 GAG|GTAGGGTACG...CTATTCTAAATA/ACTATTCTAAAT...CTCAG|ATG 0 1 54.577
38393889 GT-AG 0 0.0002145319785726 82 Ceric.01G109800.1.v2.1 7346993 8 208119665 208119746 Ceratopteris richardii 49495 GAG|GTTTATTTAT...TTCGCATTGAAG/TTGAAGTTAATC...CGCAG|TTA 0 1 65.817
38393890 GT-AG 0 0.0152505089401343 87 Ceric.01G109800.1.v2.1 7346993 9 208119831 208119917 Ceratopteris richardii 49495 GAG|GTATCAATAC...TTTACTGTGACT/TGCACTTTTACT...TGAAG|TCC 0 1 69.061
38393891 GT-AG 0 0.0002142888862275 78 Ceric.01G109800.1.v2.1 7346993 10 208120052 208120129 Ceratopteris richardii 49495 CGA|GTAAGTATCG...CTCTTCTTAGTG/TCTCTTCTTAGT...TCCAG|ACA 2 1 74.237
38393892 GT-AG 0 3.388205294128674e-05 84 Ceric.01G109800.1.v2.1 7346993 11 208120358 208120441 Ceratopteris richardii 49495 AAT|GTAAGTCTTC...CATTCCTTACGA/CCATTCCTTACG...TTCAG|GCA 2 1 83.044
38393893 GT-AG 0 0.2848043515413923 74 Ceric.01G109800.1.v2.1 7346993 12 208120715 208120788 Ceratopteris richardii 49495 TTG|GTATCTCTTC...ATGTATTTCACA/ATGTATTTCACA...GCCAG|CGG 2 1 93.588
38393894 GT-AG 0 7.564995853882907e-05 83 Ceric.01G109800.1.v2.1 7346993 13 208120869 208120951 Ceratopteris richardii 49495 ACG|GTAAGCATCC...CATCACTTGACG/AAAGTGCTGATT...TACAG|AGA 1 1 96.678

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