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

✎ 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
24327746 GT-AG 0 1.000000099473604e-05 105 rna-XM_003557753.4 4621472 1 60476186 60476290 Brachypodium distachyon 15368 AAG|GTGATGCGTG...GGGTTTCTGACA/GGGTTTCTGACA...TACAG|TTT 0 1 8.621
24327747 GT-AG 0 0.0003196618344705 804 rna-XM_003557753.4 4621472 2 60475289 60476092 Brachypodium distachyon 15368 GAG|GTATGTGTTA...TTTTTCTGAATC/TTTTTTCTGAAT...TGCAG|GAT 0 1 10.6
24327748 GT-AG 0 1.000000099473604e-05 666 rna-XM_003557753.4 4621472 3 60474560 60475225 Brachypodium distachyon 15368 CAG|GTACTAATTA...CATGCTTTCTCT/TACTAACTCATG...TGCAG|AGT 0 1 11.941
24327749 GT-AG 0 1.000000099473604e-05 79 rna-XM_003557753.4 4621472 4 60474394 60474472 Brachypodium distachyon 15368 CAG|GTAATTCTTG...TATTTCTGAAAC/ATATTTCTGAAA...TACAG|ATG 0 1 13.793
24327750 GT-AG 0 0.0044024332927791 83 rna-XM_003557753.4 4621472 5 60474158 60474240 Brachypodium distachyon 15368 GAG|GTTTCGCTTT...TCGTGCTTAACC/TCGTGCTTAACC...TGTAG|ATT 0 1 17.05
24327751 GT-AG 0 0.0004545468551356 1322 rna-XM_003557753.4 4621472 6 60472678 60473999 Brachypodium distachyon 15368 AAG|GTACACATAC...TGTTTATTGAAT/ATGTTGTTTATT...TGCAG|ATT 2 1 20.413
24327752 GT-AG 0 0.0152019992784771 225 rna-XM_003557753.4 4621472 7 60472218 60472442 Brachypodium distachyon 15368 AAG|GTACCTTGTT...TAACTTTTCTCC/CAAATAGTAACT...TGCAG|TTG 0 1 25.415
24327753 GT-AG 0 1.000000099473604e-05 521 rna-XM_003557753.4 4621472 8 60471586 60472106 Brachypodium distachyon 15368 AAG|GTAAAATGTT...TGAAACTTAAAA/GAAGTACTAATA...AACAG|CTT 0 1 27.778
24327754 GT-AG 0 0.0493754973334939 97 rna-XM_003557753.4 4621472 9 60470430 60470526 Brachypodium distachyon 15368 CAG|GTATATTTTA...TCATCTTTGATC/ATTTTTTTCATC...TTTAG|GTC 0 1 50.319
24327755 GT-AG 0 0.0049081043404114 738 rna-XM_003557753.4 4621472 10 60469428 60470165 Brachypodium distachyon 15368 CAG|GTACTTTTCA...TCTCCTTTAAAT/TTGATGCTGATA...TGCAG|ATC 0 1 55.939
24327756 GT-AG 0 5.955474946121429e-05 437 rna-XM_003557753.4 4621472 11 60468805 60469241 Brachypodium distachyon 15368 CAG|GTATTGCGAC...ATGTTTTTGACT/ATGTTTTTGACT...TTCAG|AGG 0 1 59.898
24327757 GT-AG 0 2.8356997819723638e-05 104 rna-XM_003557753.4 4621472 12 60467549 60467652 Brachypodium distachyon 15368 AAG|GTAATTTAGA...TTTGCTTTGATA/TTTGTGCTGACA...TTTAG|GTC 0 1 84.419
24327758 GT-AG 0 0.0002534917148813 117 rna-XM_003557753.4 4621472 13 60467081 60467197 Brachypodium distachyon 15368 CAG|GTACTTCTGA...GTTTTTTTAAGA/GTTTTTTTAAGA...AACAG|ATA 0 1 91.89

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