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

✎ 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
44702361 GT-AG 0 1.000000099473604e-05 4163 rna-XM_006830841.1 8322090 1 40256632 40260794 Chrysochloris asiatica 185453 CTG|GTAAGTGAGG...TCAATCTTAGCA/CTCTTCCTCACC...TACAG|GGG 1 1 3.516
44702362 GT-AG 0 1.000000099473604e-05 1825 rna-XM_006830841.1 8322090 2 40254741 40256565 Chrysochloris asiatica 185453 TCA|GTAAGGATGC...TCTCTCTTTTCT/CACTAATTTATT...CTTAG|ACA 1 1 7.978
44702363 GT-AG 0 1.000000099473604e-05 1832 rna-XM_006830841.1 8322090 3 40252852 40254683 Chrysochloris asiatica 185453 TTG|GTAAGTTAAA...TCCCTCCTAGTC/TCTCTGGTCACC...CACAG|ACT 1 1 11.832
44702364 GT-AG 0 1.000000099473604e-05 9183 rna-XM_006830841.1 8322090 4 40243494 40252676 Chrysochloris asiatica 185453 CAG|GTGAGAAAAA...CCTACCCTAACC/CATGCTCTGACC...CATAG|CTG 2 1 23.665
44702365 GT-AG 0 6.355312935906336e-05 2372 rna-XM_006830841.1 8322090 5 40241009 40243380 Chrysochloris asiatica 185453 GTG|GTAAGCATCT...GGGTCCTTGCTC/TGACCTCTCAGG...TGTAG|AGT 1 1 31.305
44702366 GT-AG 0 1.000000099473604e-05 103 rna-XM_006830841.1 8322090 6 40240777 40240879 Chrysochloris asiatica 185453 CAG|GTAGGAAGAG...ATGGCTTTGTTT/CTAATGGTCATT...TCCAG|AGA 1 1 40.027
44702367 GT-AG 0 0.0002157148237542 924 rna-XM_006830841.1 8322090 7 40239811 40240734 Chrysochloris asiatica 185453 GAG|GTAACTCCTG...TCTCTCTCATTG/GTCTCTCTCATT...TCCAG|TGG 1 1 42.867
44702368 GT-AG 0 1.000000099473604e-05 351 rna-XM_006830841.1 8322090 8 40239409 40239759 Chrysochloris asiatica 185453 AAG|GTGAGCAGAA...AGTTGCTTGGCC/GAGGCACTGAGC...CACAG|TGG 1 1 46.315
44702369 GT-AG 0 1.000000099473604e-05 1441 rna-XM_006830841.1 8322090 9 40237920 40239360 Chrysochloris asiatica 185453 CAA|GTAAGCAGAG...CAATTTTTGTTT/TCACTATTCACC...GGCAG|AAC 1 1 49.561
44702370 GT-AG 0 1.000000099473604e-05 7019 rna-XM_006830841.1 8322090 10 40230847 40237865 Chrysochloris asiatica 185453 CAG|GTGAGTGCAT...TTATTCTTGGCC/CCCCTTCTGAAT...TTCAG|GAT 1 1 53.212
44702371 GT-AG 0 1.000000099473604e-05 2419 rna-XM_006830841.1 8322090 11 40228311 40230729 Chrysochloris asiatica 185453 AAG|GTGAGCATCC...CTCTCCTGAGAG/GCTGTACTGATA...CTCAG|TCT 1 1 61.122
44702372 GT-AG 0 1.3519797854998336e-05 2529 rna-XM_006830841.1 8322090 12 40225610 40228138 Chrysochloris asiatica 185453 CAG|GTATGTGGAC...AAGCTCTGGACA/TGGACAGTAAAG...CTTAG|GTG 2 1 72.752
44702373 GT-AG 0 1.1128208305315431e-05 1177 rna-XM_006830841.1 8322090 13 40224326 40225502 Chrysochloris asiatica 185453 AGT|GTAAGTACTG...GTGTTCTCACCC/TGTGTTCTCACC...CTCAG|GTG 1 1 79.986

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