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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
147887271 GT-AG 1 98.16019094969433 1517 rna-gnl|WGS:VZRU|PEDTOR_R03323_mrna 26670772 1 144582 146098 Pedionomus torquatus 227192 ATA|GTATCCTTTA...TGATCCATAACT/CTTGTATTAATG...CTAAG|ACA 1 1 6.985
147887272 GT-AG 0 0.0004534715638528 1488 rna-gnl|WGS:VZRU|PEDTOR_R03323_mrna 26670772 2 146194 147681 Pedionomus torquatus 227192 GGA|GTAAGTATGA...AATCCCTTAATT/TTATCTTTAACA...GTTAG|GCA 0 1 11.864
147887273 GT-AG 0 1.000000099473604e-05 1104 rna-gnl|WGS:VZRU|PEDTOR_R03323_mrna 26670772 3 147799 148902 Pedionomus torquatus 227192 AAG|GTAAGTATGT...ATGCTTTTAACC/ATGCTTTTAACC...TGCAG|GAT 0 1 17.874
147887274 GT-AG 0 0.0003777239884391 7625 rna-gnl|WGS:VZRU|PEDTOR_R03323_mrna 26670772 4 149044 156668 Pedionomus torquatus 227192 CAG|GTAGGCTGTC...TGGTTTTTAATA/TGGTTTTTAATA...TACAG|CCT 0 1 25.116
147887275 GT-AG 0 1.000000099473604e-05 935 rna-gnl|WGS:VZRU|PEDTOR_R03323_mrna 26670772 5 156899 157833 Pedionomus torquatus 227192 AAA|GTGAGTATAT...TAACTTTTGAAC/AGCTTCTTCATC...TGAAG|GTT 2 1 36.929
147887276 GT-AG 0 1.000000099473604e-05 926 rna-gnl|WGS:VZRU|PEDTOR_R03323_mrna 26670772 6 158036 158961 Pedionomus torquatus 227192 AAG|GTAAAAACCT...TGACGCTTAGCT/GGAATTATAACT...TTCAG|TCT 0 1 47.304
147887277 GT-AG 0 0.0001537631292027 2810 rna-gnl|WGS:VZRU|PEDTOR_R03323_mrna 26670772 7 159149 161958 Pedionomus torquatus 227192 CAG|GTAGCATATT...TATTTCTGGAAA/CAATTACTAACT...TTAAG|GTT 1 1 56.908
147887278 GT-AG 0 1.000000099473604e-05 690 rna-gnl|WGS:VZRU|PEDTOR_R03323_mrna 26670772 8 162091 162780 Pedionomus torquatus 227192 ACG|GTAAGTAGCT...TTTTTGTTGACC/TTTTTGTTGACC...TTTAG|GTT 1 1 63.688
147887279 GT-AG 0 0.0210062524721674 707 rna-gnl|WGS:VZRU|PEDTOR_R03323_mrna 26670772 9 163005 163711 Pedionomus torquatus 227192 CAG|GTACACTGTA...TTTATCTTATTT/ATTATTTTTATT...GTCAG|CTT 0 1 75.193
147887280 GT-AG 0 9.181307711552016e-05 284 rna-gnl|WGS:VZRU|PEDTOR_R03323_mrna 26670772 10 163869 164152 Pedionomus torquatus 227192 TAA|GTAAGTTGAT...TTTTTTTTAAAT/TTTTTTTTAAAT...TAAAG|GTC 1 1 83.256
147887281 GT-AG 0 9.593408480492475e-05 2284 rna-gnl|WGS:VZRU|PEDTOR_R03323_mrna 26670772 11 164310 166593 Pedionomus torquatus 227192 CAG|GTACTTCATG...GTTCTTTTGAAA/TGCTTTCTAAAT...CTCAG|AGA 2 1 91.32
147887282 GT-AG 0 2.2107700739256372e-05 696 rna-gnl|WGS:VZRU|PEDTOR_R03323_mrna 26670772 12 166661 167356 Pedionomus torquatus 227192 TTG|GTACGTACAA...TTAACTTTATAC/GAATAATTAACT...TCTAG|AAT 0 1 94.761

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