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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
11203643 GT-AG 0 0.0001589848956879 371 rna-XM_010163183.1 2065674 3 27036 27406 Antrostomus carolinensis 279965 AAG|GTAACTAGAC...ATTTTCATAACA/ACCATTTTCATA...TACAG|GTT 1 1 20.068
11203644 GT-AG 0 3.532080021460885e-05 313 rna-XM_010163183.1 2065674 4 26622 26934 Antrostomus carolinensis 279965 AAG|GTGTGTTTCT...TTTTTGTGAACT/TGTGAACTAATG...CCCAG|AGG 0 1 25.81
11203645 GT-AG 0 1.857838651685364e-05 1245 rna-XM_010163183.1 2065674 5 25228 26472 Antrostomus carolinensis 279965 AGA|GTAAGTAAAC...ACTCTTTTAACG/TTTTTGGTAACT...TGAAG|CTG 2 1 34.281
11203646 GT-AG 0 1.000000099473604e-05 1088 rna-XM_010163183.1 2065674 6 24044 25131 Antrostomus carolinensis 279965 CAG|GTAAGAACCC...ATATGCTTATTT/CATATGCTTATT...TTTAG|GTT 2 1 39.738
11203647 GT-AG 0 1.000000099473604e-05 857 rna-XM_010163183.1 2065674 7 23118 23974 Antrostomus carolinensis 279965 ATG|GTAAGTAGGA...TGTTTTTTATTC/TTGTTTTTTATT...TCTAG|GGT 2 1 43.661
11203648 GT-AG 0 8.280973866196753e-05 3267 rna-XM_010163183.1 2065674 8 19727 22993 Antrostomus carolinensis 279965 GAA|GTAAGTAATT...GATTTCTTAATA/TGATTTCTTAAT...CACAG|CTG 0 1 50.711
11203649 GT-AG 0 0.0001729067036137 391 rna-XM_010163183.1 2065674 9 19268 19658 Antrostomus carolinensis 279965 CAT|GTAAGTTATT...ATAATTTTAACA/ATAATTTTAACA...TCTAG|GTT 2 1 54.576
11203650 GT-AG 0 1.000000099473604e-05 619 rna-XM_010163183.1 2065674 10 18478 19096 Antrostomus carolinensis 279965 GAG|GTAAAATAAC...TTATCTTCAATA/GTTATCTTCAAT...TCTAG|GGA 2 1 64.298
11203651 GT-AG 0 1.000000099473604e-05 194 rna-XM_010163183.1 2065674 11 18175 18368 Antrostomus carolinensis 279965 CTG|GTAAGGTTTT...CTCTCCTTCTCT/CATAATTTGAAG...CTTAG|GAT 0 1 70.495
11203652 GT-AG 0 4.536765867289827e-05 150 rna-XM_010163183.1 2065674 12 17966 18115 Antrostomus carolinensis 279965 TGG|GTAAATTTAA...ATTATCTTCATT/ATTATCTTCATT...ATCAG|GAA 2 1 73.849
11203653 GT-AG 0 7.19159813080774e-05 2123 rna-XM_010163183.1 2065674 13 15738 17860 Antrostomus carolinensis 279965 TAG|GTAATTATTC...TTGTTTTTGATT/TTGTTTTTGATT...AATAG|CTT 2 1 79.818
11203657 GT-AG 0 2.428764594247427e-05 143 rna-XM_010163183.1 2065674 1 29103 29245 Antrostomus carolinensis 279965 AAG|GTAAACAATT...GTCTTTTTACTC/TTTTTACTCATG...TTCAG|ATA   0 11.086
11203658 GC-AG 0 1.000000099473604e-05 1518 rna-XM_010163183.1 2065674 2 27503 29020 Antrostomus carolinensis 279965 CAG|GCAAGAACTT...CACACTTTCATC/CACACTTTCATC...TCTAG|GAG   0 15.748

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