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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
44701945 GT-AG 0 1.000000099473604e-05 124 rna-XM_006830878.1 8322042 1 52891543 52891666 Chrysochloris asiatica 185453 GAG|GTGAGGTGGG...GATTTCTGCCCT/AAATAGCTGATT...CCCAG|GAC 0 1 0.503
44701946 GT-AG 0 1.000000099473604e-05 92 rna-XM_006830878.1 8322042 2 52891817 52891908 Chrysochloris asiatica 185453 GTG|GTGGGTGAGG...GGACCTCCAACA/ATACTGTGCACA...TCCAG|GGG 0 1 6.784
44701947 GT-AG 0 1.000000099473604e-05 82 rna-XM_006830878.1 8322042 3 52892149 52892230 Chrysochloris asiatica 185453 GAG|GTCAGGCATC...TTCCCCTTGCAC/TCTCCACTCACG...CCCAG|CTG 0 1 16.834
44701948 GT-AG 0 1.000000099473604e-05 98 rna-XM_006830878.1 8322042 4 52892357 52892454 Chrysochloris asiatica 185453 ACG|GTGAGGATTC...CAGCTCTGAGCC/TCCCTGCTCAGC...CCCAG|ATC 0 1 22.111
44701949 GT-AG 0 1.000000099473604e-05 489 rna-XM_006830878.1 8322042 5 52892533 52893021 Chrysochloris asiatica 185453 CAG|GTAAGACTCC...AGTCCCTCATCC/TAGTCCCTCATC...TCCAG|TAT 0 1 25.377
44701950 GC-AG 0 1.000000099473604e-05 99 rna-XM_006830878.1 8322042 6 52893166 52893264 Chrysochloris asiatica 185453 AAG|GCAAGCAACC...CGTCCCATAGCC/GCCCGTCCCACT...CTTAG|CCC 0 1 31.407
44701951 GT-AG 0 1.000000099473604e-05 88 rna-XM_006830878.1 8322042 7 52893454 52893541 Chrysochloris asiatica 185453 CTG|GTACATGCCC...GCGTCCACAGTC/ACAGTCCAGACA...CTTAG|AGC 0 1 39.322
44701952 GT-AG 0 1.000000099473604e-05 128 rna-XM_006830878.1 8322042 8 52893716 52893843 Chrysochloris asiatica 185453 GAG|GTGCGAGCGC...CCGGTCTCAGCA/CCCGGTCTCAGC...CGTAG|GCG 0 1 46.608
44701953 GT-AG 0 1.503607773442994e-05 77 rna-XM_006830878.1 8322042 9 52894042 52894118 Chrysochloris asiatica 185453 CAG|GTGCGCTCTT...ATCTCCGTAGAT/TCTCCGTAGATC...CGCAG|GAC 0 1 54.899
44701954 GT-AG 0 1.000000099473604e-05 78 rna-XM_006830878.1 8322042 10 52894241 52894318 Chrysochloris asiatica 185453 TCA|GTGAGTCCTG...CACGACTGAACT/CCACGACTGAAC...CCCAG|GCC 2 1 60.008
44701955 GT-AG 0 1.000000099473604e-05 308 rna-XM_006830878.1 8322042 11 52894482 52894789 Chrysochloris asiatica 185453 CAG|GTCTGGGGAC...ATGGCTCTAGTA/AGTAGACGAACC...CACAG|ATG 0 1 66.834
44701956 GT-AG 0 0.0017384521321948 88 rna-XM_006830878.1 8322042 12 52895341 52895428 Chrysochloris asiatica 185453 CAA|GTGCGCTTGG...GCCTCCTTATCC/TGCCTCCTTATC...CTCAG|GTA 2 1 89.908
44701957 GT-AG 0 1.000000099473604e-05 91 rna-XM_006830878.1 8322042 13 52895491 52895581 Chrysochloris asiatica 185453 AGG|GTGAGTGAGC...CACACCTTGTTT/CCTTGTTTGATG...GCCAG|GTC 1 1 92.504

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