1. Introduction
1.1. Transposable Elements and LINE-1s
Transposable elements (TEs) or Transposons are DNA sequences that move from one location in the genome to another. These elements, occupying about half of the human genome, play an important role in the evolution of genomes, influencing genetic variation and genomic stability. Due to the disruption they cause in the genome, they are linked to various diseases [
1,
2,
3]. In humans, the Long Interspersed Element-1 (LINE-1 or L1) is the only active autonomous TE, accounting for 17% of the genome with more than 500,000 sequences. L1s are capable of mobilizing themselves as well as other non-autonomous TEs, such as Alu and SVA elements, using a “copy-and-paste” mechanism [
4,
5].
1.2. Research Areas Involving LINE-1s
One of the areas where L1s have been of high interest is cancer research, since L1s have been associated with varying forms of cancer [
6,
7]; in fact, more than 1000 articles focusing on L1s and cancer are available in the PubMed archive [
8]. The protein encoded by the Open Reading Frame 1 of L1s (ORF1p), specifically, has been considered a biomarker of neoplasia [
9]. ORF1p has also been found to be a candidate biomarker in high-grade serous ovarian carcinoma [
10]. In short, ORF1p has shown promise as a multicancer biomarker with potential utility for disease detection and monitoring, including ovarian cancer, gastroesophageal cancer, and colorectal cancer [
6,
11]. Precisely for this reason, there have been attempts to inhibit ORF1p expression and L1s in general [
3,
12].
L1s have impacted other research areas besides cancer, including the following recent studies:
A study on mice by Song et al. showed that L1-induced hearing impairment could actually be reversed by deleting the L1 retrotransposon insertion [
13].
A study by Tao et al. showed that L1 insertions can occur frequently at CRISPR/Cas9 editing sites [
14].
A study by Takahashi et al. suggests L1 activation in the cerebellum may cause ataxia [
15].
A study by Lou et al. suggests L1s may lead to early spontaneous abortion [
16].
Hence, the impact of L1s is wide-reaching, which highlights the importance of further research to better understand how their presence and frequency may be used for disease diagnosis and/or prevention.
1.3. L1PD
Because of these adverse effects on health associated with L1s, accurate and efficient L1 detection is important, which is why we developed L1PD (LINE-1 Pattern Detection) [
17]. Most L1s are inactive due to rearrangements, point mutations, and truncation [
4,
5], and that is why L1PD focuses on detecting full-length L1s, which are the most likely to retrotranspose at significant rates. There are several commonly used aligners that use the well-known seed-and-extend strategy, such as BWA-MEM [
18], Bowtie2 [
19], and CUSHAW2 [
20], with certain differences in the seeding and extension techniques [
21]. L1PD uses what we have termed seed-and-pattern-match, as opposed to seed-and-extend, where we replaced the heuristics of the extend component with a pattern-matching algorithm. Lopez et al. [
17] discuss the shortcomings of seed-and-extend in the context of L1 detection.
The pattern matching is carried out by using a fixed pre-determined set of k-mer probes, generated based on the L1 database L1Base2 [
22]. The probes are seeded into a target human genome and then particular patterns of matches are considered to be L1s if they meet certain criteria. Experiments were carried out with varying values for edit distance, distance threshold, and minimum amount of probes required in a pattern. Results were analyzed to determine which values maximized F1 score, and these values were then set to be the default values of L1PD, although the user is able to specify different values if they wish to favor either precision or recall.
Our current research focuses on improving L1PD’s performance by increasing the probe length and automating and improving the probe-generation process, thereby increasing the usefulness of the software and promoting its use in the scientific community to propel further L1 research. Additionally, we tested the effectiveness of L1PD with genomes of other species that are also available in L1Base2, thereby making it possible to detect L1s within other species as long as certain metadata are available.
2. Materials and Methods
2.1. Probe Generation
The seed-and-pattern-match approach established in L1PD [
17] displayed promising results of precision and F1 score when matching the generated 50-mer probes back to the human genome. It was hypothesized that perhaps increasing k-mer length would yield better recall, and this hypothesis was reinforced when it was found that another study by Phan et al. had previously shown a remarkable improvement in recall, with mrFAST and other aligners, when k-mer size was increased from 50 to 75 or 100 [
23]. The process of generating the probes will now be explained.
There is a pre-processing step to create a single FASTA file with all of the sequences from which probes are to be generated. First, all of the full-length intact L1s are downloaded from L1Base2 in FASTA format, along with the corresponding Comma-Separated Values (CSV) file containing the metadata for the L1s. The CSV file indicates the positions where the ORF1 and ORF2 reside, allowing us to extract them into two separate FASTA files, one with all of the ORF1s and another with all of the ORF2s. These files are processed separately, producing probes from ORF1 and from ORF2 that will need to be joined (manually) later onto a single file. Additionally, a reference genome is needed (e.g., GRCh38), since it will be used later to weed out probe candidates that do not meet certain criteria. See
Figure 1 for a visualization of this pre-processing step.
Once the sequences (ORF1 or ORF2) from which the probes are to be generated are in a single file, the probe generator bash script is executed. First, the sequences provided as input are aligned with the multiple sequence alignment program chosen. The software currently provides support for Clustal Omega 1.2.0 [
24], MUSCLE 3.8.31 [
25], MAFFT 7.312 [
26], and T-Coffee 11 [
27]; the user may use whichever they prefer, as long as it is already installed on their system. This was one of the first improvements made to L1PD, since previously the sequences had been manually aligned with the aid of bioSyntax [
28]. It should be noted that bioSyntax has continued to be an incredibly useful tool for viewing files on a remote server.
Once the sequences are aligned, the BioPython [
29] module’s
dumb_consensus function is used to extract k-mers from columns that meet the specified consensus threshold. Note that a high threshold is desirable for better results since this ensures that the probes are indeed good representatives of the L1s they aim to find. Previously, the consensus threshold (sometimes referred to as the “identity percentage” within L1PD files) had been hard coded, but now it is a parameter that may be specified by the user (95% is used by default). Originally it had been difficult to obtain a reasonable amount of probes with 95% identity when using larger values of
k, but this was no longer an issue once the probe generation was updated to apply the identity percentage as a filtering criterion earlier in the process in order to reduce the number of pre-candidates.
The micro-read Fast Alignment Search Tool (mrFAST) [
30] is then invoked to map these k-mers onto the reference genome. The results are analyzed to filter the probe candidates through the following refinement process:
Discard k-mers that did not get mapped to the ORF from which they were extracted.
From the set of remaining k-mers, discard those that did not map to every single L1.
From the set of remaining k-mers, sort in non-descending order of number of map hits on the genome, since a smaller number of hits will lower the number of false positives.
Following the order established in the previous step, select as probes the subset of all non-overlapping k-mers.
The resulting FASTA file will include the probes for the corresponding ORF that contained the original sequences. These probes are manually combined with the probes from the other ORF to produce the final probes file. Each comment line in the FASTA file will include some basic information, including the ORF from which it was extracted, the k-mer size, and its offset from the beginning of the ORF1 region. This offset is crucial for the success of L1PD, since it is used to determine whether a pattern of matches corresponds to an L1.
Figure 2 provides a visualization of the probe-generation process.
2.2. Incorporating Non-Human Genomes
L1Base2 [
22] is an online database that contains information for L1s not only for the human reference genome but for the reference genome of several other species as well, such as the
Canis familiaris (dog) and
Equus caballus (horse). Besides improving the performance of human genomes, one of the main goals for this updated version of L1PD was to be able to generate probes and detect L1s for these other species as well.
The code structure for the probe-generation process allows probes for other species to be generated without any additional effort. Once the appropriate files (FASTA and CSV) are downloaded from L1Base2, the process works seamlessly to extract the L1 components and then generate the probes. However, it should be noted that the amount of probes, and the time required to generate them, may vary considerably.
2.3. L1PD Algorithm
The L1PD algorithm [
17] receives a fully-assembled genome and uses mrFAST [
30] to index the genome and then map the probes against that genome, generating a SAM file. It should be noted that most of the run time of L1PD is taken by these steps. The SAM file, along with the probes, are then fed into a Python script (
L1PD.py), which applies the pattern-matching algorithm and generates an output file in GFF3 (General Feature Format Version 3) format. To summarize, the pattern-matching algorithm consists of finding patterns of “hits” of probes (in the SAM file) that are in the same order and within the expected distance as specified by the FASTA file that contains the probes. The full algorithm is explained by López et al. [
17], but
Figure 3 provides an overall visualization of L1PD. Note that the edit distance, distance threshold, and min. amount of k-mers in a pattern are all parameters that may be specified by the user, although L1PD provides default values for certain species.
GFF3 files store genome information features in nine tab-delimited columns. Of the nine columns, L1PD fills the following seven:
sequence id (chromosome where LINE-1 was found);
source (“L1PD”);
type (“mobile_genetic_element”);
start (start position of the LINE-1);
end (end position of the LINE-1);
strand (“+” for forward strand and “−” for reverse strand);
attributes (“Name = LINE1”).
One of the main obstacles in extending L1PD for use with other species was the fact that not only do different species have different amounts of L1s, but the average L1 length also varies, as well as the average lengths of the main components (ORFs and UTRs). These lengths are important because they are used to calculate the start and end positions that will be written to the GFF3 file. Since the lengths are expected to be normally distributed, the updated version of L1PD now uses the CSV file to calculate the modes (most common value) of the length of each component, which are then used to calculate the start and end positions of the L1.
Since the previous version of L1PD focused only on human genomes, it also generated a histogram comparing the number of L1s in each chromosome of the GRCh38 vs. the provided target genome. However, this feature has been removed since now the user will be able to run L1PD with different species.
2.4. Precision and Recall
The precision and recall shell script was initially used as a private component but is now also being provided in the repository for public use. This component was created to confirm the validity of L1PD and also to test its sensitivity to changes in edit distance, distance threshold, and min. amount of probes required in a pattern. The aim was to apply L1PD to the reference genome with varying combinations of these parameters, calculating the precision, recall, and F1 score each time, and then use the values that maximized F1 score as default values for L1PD. It should be noted that the F1 score is the harmonic mean of precision and recall [
31]. Additionally, tables with detailed results were provided [
17] to help guide the user as to what parameters to change in case they wished to favor either precision or recall.
Another of the improvements to L1PD was changing the primary parameters (distance, threshold, and min. amount of probes) from being fixed to allowing the user to specify them on the command line, which is necessary since these values are expected to vary considerably with genomes of different species. This provides the user the flexibility to execute the code and run hundreds of experiments consecutively, exploring the results for different combinations of these parameters. These experiments are essential to understanding how well the probes are performing for that particular species.
Since L1Base2 [
22] contains all of the relevant L1 information, it was used to calculate the total amount of L1s in humans, thereby allowing us to calculate the amount of true positives and false negatives in order to properly calculate the values for precision, recall, and F1 score. However, these values were fixed, so L1PD was updated so that the user may provide the directory where the corresponding L1Base2 CSV files are stored; that way, these calculations may still be performed for different species. Through testing, it was found that there were a few entries in the CSV files for the human genome that were empty. The code now gracefully disregards these special cases to allow the process to continue. Note that the CSV files must follow a particular naming convention; sample files will be provided in the repository.
3. Results
3.1. Results with Different k-mer Sizes
The algorithms were executed on the human genome using three different k-mer sizes (50, 75, 100) in order to assess the best outcome in F1 scores. For these experiments, the identity percentage stayed at 95%, as it displayed promising results, although this parameter can be adjusted when executing the algorithm. To test the effectiveness of the probes with the updated probe-generation algorithm, L1PD was executed using varying ranges of edit distance, distance threshold, and min. amount of k-mers in a pattern. For the 50-mer probes, the best F1 score was found with an edit distance of 15, whereas the 75-mer and 100-mer probes both peaked at an edit distance of 30.
Table 1 summarizes these results; detailed results are available in
Appendix A.1.
As can be seen, the 100-mers obtained the highest F1 scores. Both 75-mers and 100-mers showed relatively similar values once the edit distance reached at least 15, but 100-mers have the fewest probes of the three different k-mer sizes and require fewer k-mers per pattern, which was expected due to the increase in k-mer size. The overall highest case of F1 score was achieved with the 100-mers using edit distance 30, threshold 600, and a minimum of nine probes. For all three k-mer sizes, the results peaked and then started steadily decreasing.
Figure 4 provides a visual comparison of the best F1 score for each edit distance and k-mer size.
Additionally, there was no change in time complexity when using larger probes, as shown in
Table 2.
3.2. L1PD with Other L1Base2 Genomes
Given that L1PD is based on L1Base2 [
22], its applicability extends to various genomes. We chose to apply it to species from different orders: Carnivora, represented by the dog (
Canis Familiaris); Artiodactyla, represented by the cow (
Bos taurus); and Perissodactyls, represented by the horse (
Equus caballus). The reference genomes for these species were obtained from the Ensembl Release 84 FTP site (
http://ftp.ensembl.org/pub/release-84/fasta/ (accessed on 31 December 2023), ensuring that the genomes used are the same versions as those employed by L1Base2. Additionally, other files, such as the L1 sequences and metadata files, were obtained from L1Base2 in the same manner as with the human genome.
Using the same process as for the human genome, probes were generated for each species, with three different k-mer sizes (50, 75, and 100) and using a consensus threshold of 95%. Once the probes had been generated, L1PD was then executed with no changes to the code, but this time the arguments were the corresponding files for the species being targeted. The precision and recall experiments were then carried out to determine the values of k-mer size, edit distance, distance threshold, and minimum amount of probes per pattern that maximized the F1 score. The summarized results for dog and horse are presented in
Table 3 and
Table 4, respectively. Tables with more detailed results can be found in the appendix (
Appendix A.2 and
Appendix A.3). Additionally,
Figure 5 and
Figure 6 provide a visual comparison of the best F1 Score for each edit distance and k-mer size for the dog and cow genomes, respectively.
Although good results were obtained with the cow genome using 50-mers and an identity percentage of 95%, probes for ORF1 could not be generated with a k-mer size of 75. If we consider the other species (human, dog, and horse), it is a common trend for the total number of probes to reduce as the k-mer size increases. However, there were only five 50-mer probes for the cow, so perhaps to obtain 75-mer probes, the identity percentage might need to be reduced. Due to this setback and pending further analysis, L1PD was executed exclusively with probes of size 50 for the cow. Nonetheless, the results for the cow were the most promising, yielding the highest F1 score of all when using 50-mers (0.66801). Summarized data for the cow are presented in
Table 5; more detailed results can be found in the appendix (
Appendix A.4).
As with the human genome, the time required to execute L1PD was not affected significantly by using larger probes, as shown in
Table 6.
4. Discussion
The work realized by Phan et al. [
23] established that the probe k-mer size and recall score have a positive correlation, meaning that increasing the k-mer size should result in an increase in recall. The initial 50-mer experiments were thus adjusted to include 75-mers and 100-mers following the hypothesis that increasing the probe length will directly improve the pattern-matching recall. The results support the hypothesis previously established, although the difference was not as significant as expected. Once adequate values of edit distance, distance threshold, and minimum probes were met, the recall gradually increased for larger k-mer sizes. In addition, the precision increased as well (when compared to 50-mers), resulting in an overall higher F1 score. The overall best results with humans were found with 100-mers, using an edit distance of 30, a distance threshold of 600, and a minimum of 9 probes per pattern, for an F1 score of 0.72931.
Increasing edit distance provides flexibility in finding probes that may have had more changes due to rearrangements or mutations, which is why the lowest edit distance always provided the worst results. Similarly, a higher distance threshold allows for probe hits that may be further (or closer) away than originally expected, due to insertions (or deletions) that may have occurred. As anticipated, increasing recall can have the undesirable side effect of decreasing precision, and this can be seen in certain cases when comparing results from 100-mers with results of 75-mers.
On the other hand, it follows that increasing k-mer size would provide better results. DNA contains highly repetitive sequences, so a larger k-mer size can reduce how often these common sequences will be matched and more accurate results can be obtained.
4.1. Advantages and Limitations
4.1.1. Advantages
One of the main reasons L1PD was originally developed was because the seed-and-extend strategy seemed ill-fitted for the task of L1 detection [
17]. L1PD removes the heuristics associated with the extended phase and replaces it with pattern matching, making it a novel and promising approach for L1 detection.
The probe-generation scripts can be executed with other genomes annotated in L1Base2, allowing researchers to generate probes for other genomes. These probes, along with the corresponding CSV files, can then be used by L1PD to detect L1s.
Because of the narrow focus of L1PD, users are able to execute it in “Genome mode” by providing very little input. By default, L1PD uses a previously generated set of probes and the values of edit distance, distance threshold, and minimum amount of k-mers that resulted in optimal F1 scores (see
Appendix A for the experimental results). Hence, the user only needs to provide the genome (in FASTA format) in which L1s are to be detected and to specify the species of that genome. L1PD also allows for the user to specify custom values of any of these parameters, in case they wish to favor either precision or recall.
4.1.2. Duplicate Matches
Through experimentation, it was found that excessively high values of edit distance and/or distance threshold generated “duplicate” matches, meaning that certain patterns were matched to more than one L1. However, this did not affect the results since the highest F1 score was obtained with lower edit distance and threshold values that did not exhibit this behavior. In the future, additional experiments could be carried out to get a better understanding of the values of the parameters that cause these duplicates to start creeping in. This might help to limit upper boundaries for edit distance and/or threshold since currently the upper bounds are determined experimentally. For example, although for 50-mers we carried the experiments through a maximum edit distance of at least 25, this might be too high since it could mean that half of the k-mer has been changed.
4.1.3. CSV File Required
The original version of L1PD was designed specifically for humans, so there was certain information that was hard coded into the software, such as the average ORF1 and ORF2 lengths. This information can no longer be hard coded since L1PD can now be easily used with different genomes available from L1Base2. Due to this, L1PD now requires an additional argument with the path to a CSV file containing the metadata for the reference genome of that species. These files must follow the format of the CSV files available from L1Base2, and L1PD will use that information to determine the mean length of the different L1 components.
The long-term goal is for researchers to be able to use L1PD with other species they are interested in. However, this will require the CSV file with the metadata to be created, which is a limitation in applying L1PD to different species. One possible workaround is to avoid GFF3 format and/or use an annotation format that does not require the start and end position of every L1.
4.1.4. Time Required for Generating Probes
When we began applying L1PD to other species from L1Base2, the intention was to execute it with at least one representative from each order available on the same webpage. For rodents, the mouse (
Mus musculus) was chosen as the representative. However, when attempting to execute the steps for generating ORF2 probes with a k-mer size of 50, the process had already been running for more than 20 h, significantly longer than all the previous species. We believe this extended execution time may be due to the substantial number of full-length intact L1s in the mouse, totaling 2811; much higher than the second-highest species we worked with, the dog, which only had 264 full-length intact L1s. Upon surpassing the 20-h mark, we decided to stop the execution of the script, setting a future goal of optimizing the code used in probe generation. Besides analyzing the code structure, one of the ideas for optimization we implemented is to allow the user to specify the number of threads used by the alignment program, provided that the program supports such an option. However, mrFAST [
30] currently does not support multithreading.
4.1.5. Finding Appropriate Values of k
Finally, as seen with the cow genome, 100-mers are not always feasible. On the other hand, it is possible that certain genomes could use longer k-mers, so it requires a bit of experimentation for the user to determine what size k-mer to use. Work has been started on polishing the probe-generator component so that it may be used to find optimal values of k, thereby saving time and promoting the use of adequately sized k-mers.
4.2. Applications
As with the original version [
17], the updated version of L1PD can be used to calculate Copy Number Variation by analyzing the change in L1 count with respect to the reference genome.
Since L1PD can now be applied to several genomes, the histogram feature has been temporarily disabled, but perhaps it can be enabled in the future to get a visual comparison of the L1 distribution in the user-provided genome in comparison to the reference genome. Nonetheless, L1PD can still be executed in three different modes, allowing its use even when only reads in FASTQ format are available. See
Figure 7 and Lopez et al. [
17] for more details.
The pattern-matching strategy lends itself to be applied to different families of sequences that have column ranges of high similarity. This is the reason why the methodology was thoroughly explained and the code is made freely available. We plan on expanding in this area in the near future and possibly collaborating with colleagues who work with different species and/or families of sequences.
4.3. Future Work
Future work includes optimizing the code, finding the largest possible k-mer size for humans that yields the best results in terms of maximizing recall, trying to apply the pattern-matching algorithm to other families of sequences, such as SINEs (Short Interspersed Nuclear Elements), trying to make L1PD easier to use with genomes not available from L1Base2, and polishing the probe generator component to be used as a standalone tool.
5. Conclusions
L1PD proves to be an efficient and promising approach for L1 detection through its seed-and-pattern-match approach. Increasing k-mer size from 50 to 100 improved precision and recall, and L1PD works adequately, although with lower-than-expected results, with genomes from other species available from L1Base2. By improving L1PD’s performance and usefulness, as well as that of the probe-generation algorithm, we hope to help propel further L1 research.
Author Contributions
Conceptualization, J.O.L.; data curation, J.L.Q. and E.D.M.; funding acquisition, J.O.L.; investigation, J.O.L., J.L.Q. and E.D.M.; methodology, J.O.L.; project administration, J.O.L.; software, J.L.Q. and E.D.M.; supervision, J.O.L.; validation, J.L.Q. and E.D.M.; visualization, J.L.Q. and E.D.M.; writing—original draft preparation, J.O.L., J.L.Q. and E.D.M.; writing—review and editing, J.O.L. All authors have read and agreed to the published version of the manuscript.
Funding
The APC was funded by the University of Puerto Rico at Arecibo.
Institutional Review Board Statement
Not applicable.
Informed Consent Statement
Not applicable.
Data Availability Statement
The source code for L1PD, as well for the probe generation and precision and recall processes, is available at
https://github.com/juan-lopez/L1PD (accessed on 31 December 2023). The code consists of several shell scripts, Python scripts, FASTA files with the probes, as well as sample output files. The shell scripts should run under most Unix-like systems. L1PD may be executed in one of three modes: 1. Genome mode; 2. BAM/CRAM mode; 3. FASTQ mode. BAM/CRAM mode automatically invokes Genome mode, and FASTQ mode automatically invokes BAM/CRAM mode, as shown in
Figure 7.
Acknowledgments
The High Performance Computing Facility of the University of Puerto Rico is where this improved version of L1PD was written and where all of the corresponding experiments were carried out. Thanks to the University of Puerto Rico and the Institutional Development Award (IDeA) INBRE grant P20 GM103475 from the National Institute for General Medical Sciences (NIGMS), a component of the National Institutes of Health (NIH) and the Bioinformatics Research Core of INBRE.
Conflicts of Interest
The authors declare no conflicts of interest. The funders had no role in the design of this study; in the collection, analyses, or interpretation of data; in the writing of the manuscript; or in the decision to publish the results.
Abbreviations
The following abbreviations are used in this manuscript:
GFF3 | General Feature Format Version 3 |
L1, LINE-1 | Long Interspersed Element-1 |
L1PD | LINE-1 Pattern Detection |
ORF | Open Reading Frame |
SINE | Short interspersed element |
SVA | SINE, VNTR, and Alu |
UTR | Untranslated Region |
Appendix A. Detailed Experimental Results
Appendix A.1. Detailed L1PD Results for Homo sapiens (human)
Table A1.
F1 score: Homo sapiens (human), k-mer size: 50, total num. of probes: 43.
Table A1.
F1 score: Homo sapiens (human), k-mer size: 50, total num. of probes: 43.
Edit Distance | Threshold | Minimum Probes | Precision | Recall | F1 score |
---|
5 | 625 | 24 | 0.79059 | 0.50537 | 0.61659 |
650 | 24 | 0.79066 | 0.50559 | 0.61677 |
675 | 24 | 0.79044 | 0.50574 | 0.61682 |
700 | 24 | 0.78994 | 0.50588 | 0.61676 |
725 | 24 | 0.78940 | 0.50588 | 0.61660 |
10 | 600 | 24 | 0.76762 | 0.59176 | 0.66831 |
625 | 24 | 0.76743 | 0.59256 | 0.66874 |
650 | 24 | 0.76713 | 0.59278 | 0.66877 |
675 | 24 | 0.76647 | 0.59300 | 0.66866 |
700 | 24 | 0.76603 | 0.59322 | 0.66863 |
| 600 | 24 | 0.76312 | 0.59739 | 0.67016 |
| 625 | 24 | 0.76294 | 0.59820 | 0.67059 |
15 | 650 | 24 | 0.76265 | 0.59842 | 0.67062 |
| 675 | 24 | 0.76203 | 0.59871 | 0.67056 |
| 700 | 24 | 0.76160 | 0.59893 | 0.67054 |
20 | 625 | 25 | 0.77821 | 0.58803 | 0.66988 |
650 | 25 | 0.77787 | 0.58839 | 0.66998 |
675 | 25 | 0.77723 | 0.58876 | 0.66999 |
700 | 25 | 0.77659 | 0.58891 | 0.66984 |
725 | 25 | 0.77602 | 0.58898 | 0.66968 |
25 | 625 | 25 | 0.77735 | 0.58869 | 0.66998 |
650 | 25 | 0.77701 | 0.58905 | 0.67009 |
675 | 25 | 0.77637 | 0.58942 | 0.67009 |
700 | 25 | 0.77574 | 0.58956 | 0.66995 |
725 | 25 | 0.77514 | 0.58956 | 0.66972 |
30 | 625 | 25 | 0.77780 | 0.58869 | 0.67015 |
650 | 25 | 0.77746 | 0.58905 | 0.67026 |
675 | 25 | 0.77682 | 0.58942 | 0.67026 |
700 | 25 | 0.77619 | 0.58956 | 0.67012 |
725 | 25 | 0.77559 | 0.58956 | 0.66989 |
Table A2.
F1 score: Homo sapiens (human), k-mer size: 75, total num. of probes: 22.
Table A2.
F1 score: Homo sapiens (human), k-mer size: 75, total num. of probes: 22.
Edit Distance | Threshold | Minimum Probes | Precision | Recall | F1 Score |
---|
5 | 650 | 12 | 0.80400 | 0.44020 | 0.56891 |
675 | 12 | 0.80357 | 0.44020 | 0.56880 |
700 | 12 | 0.80344 | 0.44042 | 0.56895 |
725 | 12 | 0.80301 | 0.44042 | 0.56884 |
750 | 12 | 0.80253 | 0.44056 | 0.56884 |
10 | 575 | 14 | 0.79404 | 0.59081 | 0.67751 |
600 | 14 | 0.79407 | 0.59176 | 0.67814 |
625 | 14 | 0.79380 | 0.59249 | 0.67852 |
650 | 14 | 0.79299 | 0.59264 | 0.67832 |
675 | 14 | 0.79252 | 0.59264 | 0.67815 |
15 | 575 | 17 | 0.89554 | 0.57632 | 0.70130 |
600 | 17 | 0.89448 | 0.57728 | 0.70169 |
625 | 17 | 0.89338 | 0.57801 | 0.70189 |
650 | 17 | 0.89241 | 0.57823 | 0.70175 |
675 | 17 | 0.89152 | 0.57830 | 0.70153 |
20 | 575 | 17 | 0.88858 | 0.59212 | 0.71067 |
600 | 17 | 0.88774 | 0.59293 | 0.71098 |
625 | 17 | 0.88651 | 0.59366 | 0.71111 |
650 | 17 | 0.88529 | 0.59388 | 0.71087 |
675 | 17 | 0.88432 | 0.59388 | 0.71056 |
25 | 575 | 17 | 0.88327 | 0.59724 | 0.71261 |
600 | 17 | 0.88216 | 0.59798 | 0.71278 |
625 | 17 | 0.88086 | 0.59871 | 0.71287 |
650 | 17 | 0.87938 | 0.59893 | 0.71255 |
675 | 17 | 0.87825 | 0.59893 | 0.71218 |
| 575 | 17 | 0.87975 | 0.59937 | 0.71298 |
| 600 | 17 | 0.87865 | 0.60010 | 0.71313 |
30 | 625 | 17 | 0.87747 | 0.60083 | 0.71326 |
| 650 | 17 | 0.87621 | 0.60112 | 0.71304 |
| 675 | 17 | 0.87509 | 0.60112 | 0.71267 |
35 | 575 | 17 | 0.87492 | 0.60068 | 0.71231 |
600 | 17 | 0.87375 | 0.60141 | 0.71243 |
625 | 17 | 0.87258 | 0.60215 | 0.71256 |
650 | 17 | 0.87134 | 0.60244 | 0.71235 |
675 | 17 | 0.87016 | 0.60251 | 0.71201 |
40 | 575 | 17 | 0.87473 | 0.60068 | 0.71224 |
600 | 17 | 0.87365 | 0.60141 | 0.71240 |
625 | 17 | 0.87231 | 0.60215 | 0.71247 |
650 | 17 | 0.87116 | 0.60244 | 0.71229 |
675 | 17 | 0.86998 | 0.60251 | 0.71195 |
Table A3.
F1 Score: Homo sapiens (human), k-mer size: 100, total num. of probes: 13.
Table A3.
F1 Score: Homo sapiens (human), k-mer size: 100, total num. of probes: 13.
Edit Distance | Threshold | Minimum Probes | Precision | Recall | F1 Score |
---|
5 | 525 | 9 | 0.95444 | 0.27123 | 0.42241 |
550 | 9 | 0.95446 | 0.27137 | 0.42258 |
575 | 9 | 0.95448 | 0.27152 | 0.42277 |
600 | 9 | 0.95477 | 0.27181 | 0.42315 |
625 | 9 | 0.95503 | 0.27188 | 0.42325 |
10 | 575 | 7 | 0.76933 | 0.54209 | 0.63602 |
600 | 7 | 0.76967 | 0.54290 | 0.63668 |
625 | 7 | 0.76994 | 0.54348 | 0.63718 |
650 | 7 | 0.76951 | 0.54363 | 0.63713 |
675 | 7 | 0.76916 | 0.54377 | 0.63711 |
15 | 575 | 9 | 0.89232 | 0.58437 | 0.70623 |
600 | 9 | 0.89161 | 0.58547 | 0.70681 |
625 | 9 | 0.89072 | 0.58613 | 0.70701 |
650 | 9 | 0.88948 | 0.58635 | 0.70678 |
675 | 9 | 0.88853 | 0.58657 | 0.70664 |
20 | 575 | 9 | 0.88355 | 0.60997 | 0.72169 |
600 | 9 | 0.88243 | 0.61107 | 0.72209 |
625 | 9 | 0.88124 | 0.61173 | 0.72215 |
650 | 9 | 0.87981 | 0.61202 | 0.72187 |
675 | 9 | 0.87871 | 0.61209 | 0.72155 |
25 | 550 | 9 | 0.87679 | 0.61999 | 0.72635 |
575 | 9 | 0.87692 | 0.62124 | 0.72725 |
600 | 9 | 0.87538 | 0.62226 | 0.72742 |
625 | 9 | 0.87406 | 0.62292 | 0.72741 |
650 | 9 | 0.87260 | 0.62329 | 0.72716 |
| 550 | 9 | 0.86970 | 0.62643 | 0.72828 |
| 575 | 9 | 0.86993 | 0.62767 | 0.72920 |
30 | 600 | 9 | 0.86826 | 0.62870 | 0.72931 |
| 625 | 9 | 0.86681 | 0.62936 | 0.72924 |
| 650 | 9 | 0.86531 | 0.62972 | 0.72894 |
35 | 525 | 9 | 0.86448 | 0.62855 | 0.72786 |
550 | 9 | 0.86405 | 0.62950 | 0.72835 |
575 | 9 | 0.86428 | 0.63075 | 0.72926 |
600 | 9 | 0.86239 | 0.63170 | 0.72923 |
625 | 9 | 0.86105 | 0.63236 | 0.72919 |
40 | 525 | 9 | 0.85919 | 0.63067 | 0.72740 |
550 | 9 | 0.85886 | 0.63162 | 0.72791 |
575 | 9 | 0.85892 | 0.63287 | 0.72876 |
600 | 9 | 0.85715 | 0.63382 | 0.72875 |
625 | 9 | 0.85567 | 0.63448 | 0.72865 |
Appendix A.2. Detailed L1PD Results for Canis Familiaris (Dog)
Table A4.
F1 score: Canis Familiaris (dog), k-mer size: 50, total num. of probes: 24.
Table A4.
F1 score: Canis Familiaris (dog), k-mer size: 50, total num. of probes: 24.
Edit Distance | Threshold | Minimum Probes | Precision | Recall | F1 Score |
---|
5 | 700 | 5 | 0.58494 | 0.45187 | 0.50986 |
725 | 5 | 0.58505 | 0.45207 | 0.51002 |
750 | 5 | 0.58541 | 0.45217 | 0.51022 |
775 | 5 | 0.58467 | 0.45207 | 0.50988 |
800 | 5 | 0.58465 | 0.45217 | 0.50994 |
| 675 | 10 | 0.65209 | 0.45157 | 0.53360 |
| 700 | 10 | 0.65196 | 0.45187 | 0.53377 |
10 | 725 | 10 | 0.65220 | 0.45217 | 0.53406 |
| 750 | 10 | 0.65197 | 0.45227 | 0.53405 |
| 775 | 10 | 0.65140 | 0.45207 | 0.53372 |
15 | 700 | 10 | 0.64176 | 0.45568 | 0.53294 |
725 | 10 | 0.64197 | 0.45608 | 0.53328 |
750 | 10 | 0.64183 | 0.45618 | 0.53331 |
775 | 10 | 0.64128 | 0.45598 | 0.53298 |
800 | 10 | 0.64106 | 0.45608 | 0.53296 |
20 | 700 | 10 | 0.63358 | 0.45698 | 0.53097 |
725 | 10 | 0.63352 | 0.45738 | 0.53122 |
750 | 10 | 0.63331 | 0.45748 | 0.53122 |
775 | 10 | 0.63268 | 0.45728 | 0.53086 |
800 | 10 | 0.63246 | 0.45738 | 0.53084 |
25 | 675 | 11 | 0.65064 | 0.44776 | 0.53046 |
700 | 11 | 0.65045 | 0.44796 | 0.53053 |
725 | 11 | 0.65070 | 0.44826 | 0.53082 |
750 | 11 | 0.65037 | 0.44836 | 0.53078 |
775 | 11 | 0.64989 | 0.44816 | 0.53048 |
Table A5.
F1 Score: Canis Familiaris (dog), k-mer size: 75, total num. of probes: 14.
Table A5.
F1 Score: Canis Familiaris (dog), k-mer size: 75, total num. of probes: 14.
Edit Distance | Threshold | Minimum Probes | Precision | Recall | F1 Score |
---|
5 | 850 | 2 | 0.57956 | 0.39582 | 0.47038 |
875 | 2 | 0.57948 | 0.39582 | 0.47034 |
900 | 2 | 0.57956 | 0.39582 | 0.47038 |
925 | 2 | 0.57948 | 0.39582 | 0.47034 |
950 | 2 | 0.57931 | 0.39582 | 0.47029 |
10 | 700 | 6 | 0.65159 | 0.44646 | 0.52985 |
725 | 6 | 0.65165 | 0.44676 | 0.53009 |
750 | 6 | 0.65151 | 0.44686 | 0.53011 |
775 | 6 | 0.65146 | 0.44676 | 0.53003 |
800 | 6 | 0.65122 | 0.44686 | 0.53001 |
15 | 675 | 9 | 0.71642 | 0.44505 | 0.54902 |
700 | 9 | 0.71633 | 0.44535 | 0.54923 |
725 | 9 | 0.71589 | 0.44565 | 0.54933 |
750 | 9 | 0.71548 | 0.44575 | 0.54928 |
775 | 9 | 0.71497 | 0.44565 | 0.54905 |
| 675 | 9 | 0.70608 | 0.45257 | 0.55159 |
| 700 | 9 | 0.70600 | 0.45287 | 0.55178 |
20 | 725 | 9 | 0.70552 | 0.45327 | 0.55193 |
| 750 | 9 | 0.70491 | 0.45337 | 0.55182 |
| 775 | 9 | 0.70442 | 0.45327 | 0.55159 |
25 | 675 | 9 | 0.69706 | 0.45518 | 0.55072 |
700 | 9 | 0.69699 | 0.45548 | 0.55092 |
725 | 9 | 0.69685 | 0.45588 | 0.55116 |
750 | 9 | 0.69626 | 0.45598 | 0.55106 |
775 | 9 | 0.69579 | 0.45588 | 0.55084 |
30 | 675 | 9 | 0.69268 | 0.45648 | 0.55029 |
700 | 9 | 0.69261 | 0.45678 | 0.55050 |
725 | 9 | 0.69248 | 0.45718 | 0.55074 |
750 | 9 | 0.69179 | 0.45728 | 0.55060 |
775 | 9 | 0.69143 | 0.45718 | 0.55041 |
Table A6.
F1 score: Canis Familiaris (dog), k-mer size: 100, total num. of probes: 10.
Table A6.
F1 score: Canis Familiaris (dog), k-mer size: 100, total num. of probes: 10.
Edit Distance | Threshold | Minimum Probes | Precision | Recall | F1 Score |
---|
5 | 775 | 2 | 0.65663 | 0.32805 | 0.43751 |
800 | 2 | 0.65683 | 0.32815 | 0.43764 |
825 | 2 | 0.65690 | 0.32825 | 0.43775 |
850 | 2 | 0.65683 | 0.32815 | 0.43764 |
875 | 2 | 0.65683 | 0.32815 | 0.43764 |
10 | 775 | 2 | 0.58100 | 0.44224 | 0.50220 |
800 | 2 | 0.58113 | 0.44235 | 0.50232 |
825 | 2 | 0.58119 | 0.44245 | 0.50241 |
850 | 2 | 0.58136 | 0.44235 | 0.50240 |
875 | 2 | 0.58110 | 0.44214 | 0.50217 |
15 | 700 | 6 | 0.68682 | 0.44285 | 0.53848 |
725 | 6 | 0.68665 | 0.44315 | 0.53865 |
750 | 6 | 0.68649 | 0.44325 | 0.53868 |
775 | 6 | 0.68627 | 0.44325 | 0.53860 |
800 | 6 | 0.68621 | 0.44335 | 0.53866 |
20 | 675 | 7 | 0.70457 | 0.45287 | 0.55134 |
700 | 7 | 0.70444 | 0.45307 | 0.55145 |
725 | 7 | 0.70385 | 0.45347 | 0.55156 |
750 | 7 | 0.70357 | 0.45357 | 0.55155 |
775 | 7 | 0.70293 | 0.45337 | 0.55121 |
25 | 675 | 7 | 0.69581 | 0.45959 | 0.55354 |
700 | 7 | 0.69558 | 0.45979 | 0.55362 |
725 | 7 | 0.69503 | 0.46019 | 0.55373 |
750 | 7 | 0.69476 | 0.46029 | 0.55372 |
775 | 7 | 0.69425 | 0.46009 | 0.55341 |
30 | 600 | 8 | 0.73720 | 0.44465 | 0.55471 |
625 | 8 | 0.73692 | 0.44515 | 0.55501 |
650 | 8 | 0.73653 | 0.44565 | 0.55529 |
675 | 8 | 0.73580 | 0.44565 | 0.55508 |
700 | 8 | 0.73507 | 0.44565 | 0.55488 |
35 | 600 | 8 | 0.73061 | 0.44786 | 0.55531 |
625 | 8 | 0.73031 | 0.44826 | 0.55552 |
650 | 8 | 0.72994 | 0.44876 | 0.55580 |
675 | 8 | 0.72934 | 0.44876 | 0.55563 |
700 | 8 | 0.72863 | 0.44876 | 0.55542 |
| 600 | 8 | 0.72610 | 0.44946 | 0.55522 |
| 625 | 8 | 0.72605 | 0.44986 | 0.55551 |
40 | 650 | 8 | 0.72561 | 0.45047 | 0.55585 |
| 675 | 8 | 0.72502 | 0.45047 | 0.55567 |
| 700 | 8 | 0.72437 | 0.45057 | 0.55556 |
45 | 600 | 8 | 0.72076 | 0.45057 | 0.55449 |
625 | 8 | 0.72071 | 0.45097 | 0.55478 |
650 | 8 | 0.72029 | 0.45157 | 0.55511 |
675 | 8 | 0.71971 | 0.45157 | 0.55493 |
700 | 8 | 0.71930 | 0.45167 | 0.55489 |
50 | 600 | 8 | 0.71671 | 0.45227 | 0.55457 |
625 | 8 | 0.71666 | 0.45267 | 0.55486 |
650 | 8 | 0.71614 | 0.45327 | 0.55515 |
675 | 8 | 0.71557 | 0.45327 | 0.55498 |
700 | 8 | 0.71516 | 0.45337 | 0.55493 |
Appendix A.3. Detailed L1PD Results for Equus caballus (horse)
Table A7.
F1 score: Equus caballus (horse), k-mer size: 50, total num. of probes: 35.
Table A7.
F1 score: Equus caballus (horse), k-mer size: 50, total num. of probes: 35.
Edit Distance | Threshold | Minimum Probes | Precision | Recall | F1 Score |
---|
5 | 1325 | 2 | 0.30146 | 0.36232 | 0.32908 |
1350 | 2 | 0.30146 | 0.36232 | 0.32908 |
1375 | 2 | 0.30170 | 0.36261 | 0.32934 |
1400 | 2 | 0.30166 | 0.36261 | 0.32932 |
1425 | 2 | 0.30166 | 0.36261 | 0.32932 |
| 1200 | 8 | 0.35367 | 0.40043 | 0.37560 |
| 1225 | 8 | 0.35396 | 0.40087 | 0.37595 |
10 | 1250 | 8 | 0.35405 | 0.40101 | 0.37606 |
| 1275 | 8 | 0.35400 | 0.40101 | 0.37603 |
| 1300 | 8 | 0.35396 | 0.40101 | 0.37601 |
15 | 1325 | 10 | 0.36712 | 0.37658 | 0.37178 |
1350 | 10 | 0.36676 | 0.37658 | 0.37159 |
1375 | 10 | 0.36704 | 0.37687 | 0.37188 |
1400 | 10 | 0.36694 | 0.37687 | 0.37182 |
1425 | 10 | 0.36689 | 0.37687 | 0.37180 |
20 | 1200 | 10 | 0.36080 | 0.37890 | 0.36962 |
1225 | 10 | 0.36124 | 0.37963 | 0.37019 |
1250 | 10 | 0.36123 | 0.37978 | 0.37026 |
1275 | 10 | 0.36108 | 0.37978 | 0.37019 |
1300 | 10 | 0.36098 | 0.37978 | 0.37013 |
25 | 1175 | 10 | 0.35640 | 0.37978 | 0.36770 |
1200 | 10 | 0.35657 | 0.38007 | 0.36794 |
1225 | 10 | 0.35706 | 0.38080 | 0.36853 |
1250 | 10 | 0.35690 | 0.38094 | 0.36852 |
1275 | 10 | 0.35656 | 0.38094 | 0.36833 |
Table A8.
F1 score: Equus caballus (horse), k-mer size: 75, total num. of probes: 13.
Table A8.
F1 score: Equus caballus (horse), k-mer size: 75, total num. of probes: 13.
Edit Distance | Threshold | Minimum Probes | Precision | Recall | F1 Score |
---|
5 | 1525 | 2 | 0.43180 | 0.13032 | 0.20020 |
1550 | 2 | 0.43180 | 0.13032 | 0.20020 |
1575 | 2 | 0.43180 | 0.13032 | 0.20020 |
1600 | 2 | 0.43132 | 0.13018 | 0.19998 |
1625 | 2 | 0.43132 | 0.13018 | 0.19998 |
10 | 1475 | 2 | 0.32311 | 0.38341 | 0.35067 |
1500 | 2 | 0.32324 | 0.38356 | 0.35082 |
1525 | 2 | 0.32324 | 0.38356 | 0.35082 |
1550 | 2 | 0.32312 | 0.38356 | 0.35075 |
1575 | 2 | 0.32316 | 0.38356 | 0.35077 |
15 | 1500 | 5 | 0.36774 | 0.38909 | 0.37810 |
1525 | 5 | 0.36774 | 0.38909 | 0.37810 |
1550 | 5 | 0.36774 | 0.38909 | 0.37810 |
1575 | 5 | 0.36769 | 0.38909 | 0.37807 |
1600 | 5 | 0.36764 | 0.38909 | 0.37806 |
20 | 1500 | 6 | 0.38220 | 0.38603 | 0.38410 |
1525 | 6 | 0.38220 | 0.38603 | 0.38410 |
1550 | 6 | 0.38220 | 0.38603 | 0.38410 |
1575 | 6 | 0.38214 | 0.38603 | 0.38406 |
1600 | 6 | 0.38209 | 0.38603 | 0.38404 |
| 1500 | 6 | 0.37559 | 0.39345 | 0.38431 |
| 1525 | 6 | 0.37559 | 0.39345 | 0.38431 |
25 | 1550 | 6 | 0.37559 | 0.39345 | 0.38431 |
| 1575 | 6 | 0.37548 | 0.39345 | 0.38424 |
| 1600 | 6 | 0.37543 | 0.39345 | 0.38422 |
30 | 1500 | 6 | 0.37046 | 0.39476 | 0.38221 |
1525 | 6 | 0.37046 | 0.39476 | 0.38221 |
1550 | 6 | 0.37046 | 0.39476 | 0.38221 |
1575 | 6 | 0.37030 | 0.39476 | 0.38212 |
1600 | 6 | 0.37030 | 0.39476 | 0.38212 |
Table A9.
F1 score: Equus caballus (horse), k-mer size: 100, total num. of probes: 9.
Table A9.
F1 score: Equus caballus (horse), k-mer size: 100, total num. of probes: 9.
Edit Distance | Threshold | Minimum Probes | Precision | Recall | F1 Score |
---|
5 | 1525 | 2 | 0.48668 | 0.11694 | 0.18856 |
1550 | 2 | 0.48668 | 0.11694 | 0.18856 |
1575 | 2 | 0.48668 | 0.11694 | 0.18856 |
1600 | 2 | 0.48607 | 0.11680 | 0.18833 |
1625 | 2 | 0.48607 | 0.11680 | 0.18833 |
10 | 1050 | 2 | 0.45106 | 0.19040 | 0.26776 |
1075 | 2 | 0.45141 | 0.19054 | 0.26796 |
1100 | 2 | 0.45175 | 0.19069 | 0.26816 |
1125 | 2 | 0.45160 | 0.19069 | 0.26814 |
1150 | 2 | 0.45160 | 0.19069 | 0.26814 |
15 | 1200 | 2 | 0.36113 | 0.37730 | 0.36902 |
1225 | 2 | 0.36154 | 0.37774 | 0.36945 |
1250 | 2 | 0.36163 | 0.37789 | 0.36957 |
1275 | 2 | 0.36153 | 0.37789 | 0.36951 |
1300 | 2 | 0.36148 | 0.37789 | 0.36949 |
20 | 900 | 4 | 0.38240 | 0.39825 | 0.39016 |
925 | 4 | 0.38254 | 0.39840 | 0.39029 |
950 | 4 | 0.38282 | 0.39869 | 0.39059 |
975 | 4 | 0.38276 | 0.39869 | 0.39055 |
1000 | 4 | 0.38276 | 0.39869 | 0.39055 |
25 | 1225 | 5 | 0.39538 | 0.39418 | 0.39477 |
1250 | 5 | 0.39553 | 0.39432 | 0.39492 |
1275 | 5 | 0.39553 | 0.39432 | 0.39492 |
1300 | 5 | 0.39547 | 0.39432 | 0.39488 |
1325 | 5 | 0.39542 | 0.39432 | 0.39486 |
| 1450 | 5 | 0.38871 | 0.40392 | 0.39616 |
| 1475 | 5 | 0.38880 | 0.40407 | 0.39628 |
30 | 1500 | 5 | 0.38888 | 0.40421 | 0.39638 |
| 1525 | 5 | 0.38883 | 0.40421 | 0.39636 |
| 1550 | 5 | 0.38883 | 0.40421 | 0.39636 |
35 | 1200 | 5 | 0.38282 | 0.40654 | 0.39431 |
1225 | 5 | 0.38318 | 0.40698 | 0.39471 |
1250 | 5 | 0.38331 | 0.40712 | 0.39484 |
1275 | 5 | 0.38326 | 0.40712 | 0.39482 |
1300 | 5 | 0.38326 | 0.40712 | 0.39482 |
40 | 1200 | 5 | 0.37951 | 0.40843 | 0.39343 |
1225 | 5 | 0.37986 | 0.40887 | 0.39382 |
1250 | 5 | 0.38000 | 0.40901 | 0.39396 |
1275 | 5 | 0.37994 | 0.40901 | 0.39392 |
1300 | 5 | 0.37994 | 0.40901 | 0.39392 |
45 | 1200 | 5 | 0.37405 | 0.41018 | 0.39127 |
1225 | 5 | 0.37440 | 0.41061 | 0.39166 |
1250 | 5 | 0.37443 | 0.41076 | 0.39175 |
1275 | 5 | 0.37433 | 0.41076 | 0.39168 |
1300 | 5 | 0.37423 | 0.41076 | 0.39163 |
50 | 1325 | 5 | 0.37091 | 0.41149 | 0.39014 |
1350 | 5 | 0.37095 | 0.41163 | 0.39022 |
1375 | 5 | 0.37084 | 0.41178 | 0.39022 |
1400 | 5 | 0.37059 | 0.41178 | 0.39009 |
1425 | 5 | 0.37054 | 0.41178 | 0.39007 |
Appendix A.4. Detailed L1PD Results for Bos taurus (Cow)
Table A10.
F1 score: Bos taurus (cow), k-mer size: 50, total num. of probes: 5.
Table A10.
F1 score: Bos taurus (cow), k-mer size: 50, total num. of probes: 5.
Edit Distance | Threshold | Minimum Probes | Precision | Recall | F1 Score |
---|
5 | 850 | 4 | 0.60057 | 0.62280 | 0.61147 |
875 | 4 | 0.60031 | 0.62413 | 0.61198 |
900 | 4 | 0.60063 | 0.62545 | 0.61278 |
925 | 4 | 0.59987 | 0.62545 | 0.61238 |
950 | 4 | 0.59924 | 0.62578 | 0.61221 |
10 | 850 | 5 | 0.87828 | 0.52000 | 0.65323 |
875 | 5 | 0.87652 | 0.52099 | 0.65352 |
900 | 5 | 0.87666 | 0.52165 | 0.65408 |
925 | 5 | 0.87513 | 0.52132 | 0.65339 |
950 | 5 | 0.87341 | 0.52231 | 0.65369 |
15 | 850 | 5 | 0.87588 | 0.53421 | 0.66364 |
875 | 5 | 0.87419 | 0.53520 | 0.66392 |
900 | 5 | 0.87432 | 0.53586 | 0.66446 |
925 | 5 | 0.87291 | 0.53586 | 0.66406 |
950 | 5 | 0.87070 | 0.53652 | 0.66392 |
20 | 850 | 5 | 0.86865 | 0.53785 | 0.66434 |
875 | 5 | 0.86609 | 0.53884 | 0.66434 |
900 | 5 | 0.86578 | 0.53950 | 0.66475 |
925 | 5 | 0.86440 | 0.53950 | 0.66434 |
950 | 5 | 0.86226 | 0.54016 | 0.66421 |
| 850 | 5 | 0.87553 | 0.53950 | 0.66761 |
| 875 | 5 | 0.87293 | 0.54049 | 0.66760 |
25 | 900 | 5 | 0.87260 | 0.54115 | 0.66801 |
| 925 | 5 | 0.87120 | 0.54115 | 0.66760 |
| 950 | 5 | 0.86903 | 0.54181 | 0.66746 |
References
- Belancio, V.P.; Deininger, P.L.; Roy-Engel, A.M. LINE dancing in the human genome: Transposable elements and disease. Genome Med. 2009, 1, 97. [Google Scholar] [CrossRef]
- Solyom, S.; Kazazian, H.H. Mobile elements in the human genome: Implications for disease. Genome Med. 2012, 4, 12. [Google Scholar] [CrossRef]
- Zhang, X.; Zhang, R.; Yu, J. New Understanding of the Relevant Role of LINE-1 Retrotransposition in Human Disease and Immune Modulation. Front. Cell Dev. Biol. 2020, 8, 657. [Google Scholar] [CrossRef]
- Kazazian, H.H., Jr.; Moran, J.V. The impact of L1 retrotransposons on the human genome. Nat. Genet. 1998, 19, 19–24. [Google Scholar] [CrossRef]
- Hancks, D.C.; Kazazian, H.H., Jr. Roles for retrotransposon insertions in human disease. Mob. DNA 2016, 7, 9. [Google Scholar] [CrossRef]
- Rodić, N.; Sharma, R.; Sharma, R.; Zampella, J.; Dai, L.; Taylor, M.S.; Hruban, R.H.; Iacobuzio-Donahue, C.A.; Maitra, A.; Torbenson, M.S.; et al. Long Interspersed Element-1 Protein Expression Is a Hallmark of Many Human Cancers. Am. J. Pathol. 2014, 184, 1280–1286. [Google Scholar] [CrossRef]
- Lu, X.-J.; Xue, H.-Y.; Qi, X.; Jiang, X.; Ma, S.J. LINE-1 in cancer: Multifaceted functions and potential clinical implications. Genet. Med. 2016, 18, 431–439. [Google Scholar] [CrossRef]
- Rodić, N. LINE-1 activity and regulation in cancer. Front. Biosci.-Landmark 2018, 23, 1680–1686. [Google Scholar] [CrossRef]
- Ardeljan, D.; Taylor, M.S.; Ting, D.T.; Burns, K.H. The Human Long Interspersed Element-1 Retrotransposon: An Emerging Biomarker of Neoplasia. Clin. Chem. 2017, 63, 816–822. [Google Scholar] [CrossRef]
- Sato, S.; Gillette, M.; de Santiago, P.R.; Kuhn, E.; Burgess, M.; Doucette, K.; Feng, Y.; Mendez-Dorantes, C.; Ippoliti, P.J.; Hobday, S.; et al. LINE-1 ORF1p as a candidate biomarker in high grade serous ovarian carcinoma. Sci. Rep. 2023, 13, 1537. [Google Scholar] [CrossRef] [PubMed]
- Taylor, M.S.; Wu, C.; Fridy, P.C.; Zhang, S.J.; Senussi, Y.; Wolters, J.C.; Cajuso, T.; Cheng, W.C.; Heaps, J.D.; Miller, B.D.; et al. Ultrasensitive Detection of Circulating LINE-1 ORF1p as a Specific Multicancer Biomarker. Cancer Discov. 2023, 13, 2532–2547. [Google Scholar] [CrossRef]
- Kou, Y.; Wang, S.; Ma, Y.; Zhang, N.; Zhang, Z.; Liu, Q.; Mao, Y.; Zhou, R.; Yi, D.; Ma, L.; et al. A High Throughput Cell-Based Screen Assay for LINE-1 ORF1p Expression Inhibitors Using the In-Cell Western Technique. Front. Pharmacol. 2022, 13, 881938. [Google Scholar] [CrossRef]
- Song, C.; Li, J.; Liu, S.; Hou, H.; Zhu, T.; Chen, J.; Liu, L.; Jia, Y.; Xiong, W. An L1 retrotransposon insertion–induced deafness mouse model for studying the development and function of the cochlear stria vascularis. Proc. Natl. Acad. Sci. USA 2021, 118, e2107933118. [Google Scholar] [CrossRef]
- Tao, J.; Wang, Q.; Mendez-Dorantes, C.; Burns, K.H.; Chiarle, R. Frequency and mechanisms of LINE-1 retrotransposon insertions at CRISPR/Cas9 sites. Nat. Commun. 2022, 13, 3685. [Google Scholar] [CrossRef]
- Takahashi, T.; Stoiljkovic, M.; Song, E.; Gao, X.B.; Yasumoto, Y.; Kudo, E.; Carvalho, F.; Kong, Y.; Park, A.; Shanabrough, M.; et al. LINE-1 activation in the cerebellum drives ataxia. Neuron 2022, 110, 3278–3287.e8. [Google Scholar] [CrossRef]
- Lou, C.; Qiang, R.; Wu, H.; Zhang, L.; Li, W.; Jia, T.; Liu, X. Expression of LINE-1 retrotransposon in early human spontaneous abortion tissues. Medicine 2022, 101, e31964. [Google Scholar] [CrossRef]
- López, J.O.; Seguel, J.; Chamorro, A.; Ramos, K.S. Pattern matching for high precision detection of LINE-1s in human genomes. BMC Bioinform. 2022, 23, 375. [Google Scholar] [CrossRef]
- Li, H. Aligning sequence reads, clone sequences and assembly contigs with BWA-MEM. arXiv 2013. [Google Scholar] [CrossRef]
- Langmead, B.; Salzberg, S.L. Fast gapped-read alignment with Bowtie 2. Nat. Methods 2012, 9, 357–359. [Google Scholar] [CrossRef]
- Liu, Y.; Schmidt, B. Long read alignment based on maximal exact match seeds. Bioinformatics 2012, 28, i318–i324. [Google Scholar] [CrossRef]
- Ahmed, N.; Bertels, K.; Al-Ars, Z. A comparison of seed-and-extend techniques in modern DNA read alignment algorithms. In Proceedings of the 2016 IEEE International Conference on Bioinformatics and Biomedicine (BIBM), Shenzhen, China, 15–18 December 2016; pp. 1421–1428. [Google Scholar] [CrossRef]
- Penzkofer, T.; Jäger, M.; Figlerowicz, M.; Badge, R.; Mundlos, S.; Robinson, P.N.; Zemojtel, T. L1Base 2: More retrotransposition-active LINE-1s, more mammalian genomes. Nucleic Acids Res. 2016, 45, D68–D73. [Google Scholar] [CrossRef]
- Phan, V.; Gao, S.; Tran, Q.; Vo, N.S. How genome complexity can explain the difficulty of aligning reads to genomes. BMC Bioinform. 2015, 16, S3. [Google Scholar] [CrossRef]
- Sievers, F.; Wilm, A.; Dineen, D.; Gibson, T.J.; Karplus, K.; Li, W.; Lopez, R.; McWilliam, H.; Remmert, M.; Söding, J.; et al. Fast, scalable generation of high-quality protein multiple sequence alignments using Clustal Omega. Mol. Syst. Biol. 2011, 7, 539. [Google Scholar] [CrossRef]
- Edgar, R.C. MUSCLE: Multiple sequence alignment with high accuracy and high throughput. Nucleic Acids Res. 2004, 32, 1792–1797. [Google Scholar] [CrossRef]
- Katoh, K.; Standley, D.M. MAFFT Multiple Sequence Alignment Software Version 7: Improvements in Performance and Usability. Mol. Biol. Evol. 2013, 30, 772–780. [Google Scholar] [CrossRef]
- Notredame, C.; Higgins, D.G.; Heringa, J. T-Coffee: A Novel Method for Fast and Accurate Multiple Sequence Alignment. J. Mol. Biol. 2000, 302, 205–217. [Google Scholar] [CrossRef]
- Babaian, A.; Ebou, A.; Fegen, A.; Kam, H.Y.; Novakovsky, G.E.; Wong, J.; Aïssi, D.; Yao, L. bioSyntax: Syntax highlighting for computational biology. BMC Bioinform. 2018, 19, 303. [Google Scholar] [CrossRef]
- Cock, P.J.A.; Antao, T.; Chang, J.T.; Chapman, B.A.; Cox, C.J.; Dalke, A.; Friedberg, I.; Hamelryck, T.; Kauff, F.; Wilczynski, B.; et al. Biopython: Freely available Python tools for computational molecular biology and bioinformatics. Bioinformatics 2009, 25, 1422–1423. [Google Scholar] [CrossRef]
- Alkan, C.; Kidd, J.; Marques-Bonet, T.; Aksay, G.; Antonacci, F.; Hormozdiari, F.; Kitzman, J.O.; Baker, C.; Malig, M.; Mutlu, O.; et al. Personalized copy number and segmental duplication maps using next-generation sequencing. Nat. Genet. 2009, 41, 1061–1067. [Google Scholar] [CrossRef] [PubMed]
- van Rijsbergen, C.J. Evaluation. In Information Retrieval, 2nd ed.; Butterworth-Heinemann: Glasgow, Scotland, 1979; pp. 112–140. [Google Scholar]
| Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2024 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).