Title: | ACE File to FASTQ Converter |
---|---|
Description: | The ACE file format is used in genomics to store contigs from sequencing machines. This tools converts it into FASTQ format. Both formats contain the sequence characters and their corresponding quality information. Unlike the FASTQ file, the ace file stores the quality values numerically. The conversion algorithm uses the standard Sanger formula. The package facilitates insertion into pipelines, and content inspection. |
Authors: | Reinhard Simon [aut, cre] |
Maintainer: | Reinhard Simon <[email protected]> |
License: | GPL-3 |
Version: | 0.6.0 |
Built: | 2025-02-12 06:00:08 UTC |
Source: | https://github.com/c5sire/ace2fastq |
Converts one or more contig sequences in .ace file format to .fastq format. The parameter target_dir has a special value 'stdout' which will just return the contigs as a list.
ace_to_fastq(filename, target_dir = dirname(filename), name2id = TRUE)
ace_to_fastq(filename, target_dir = dirname(filename), name2id = TRUE)
filename |
.ace file |
target_dir |
target directory or stdout |
name2id |
use the file name as primary id or not. Default is TRUE. |
list
Reinhard Simon
library(ace2fastq) filename <- system.file("sampledat/1.seq.ace", package = "ace2fastq") fileout <- ace_to_fastq(filename, target_dir = tempdir())
library(ace2fastq) filename <- system.file("sampledat/1.seq.ace", package = "ace2fastq") fileout <- ace_to_fastq(filename, target_dir = tempdir())
The package provides a function that converts ".ace" files (ABI Sanger capillary sequence assembly files) to standard ".fastq" files. The file format is currently used in genomics to store contigs. To the best of our knowledge, no R function is available to convert this format into the more popular fastq file format. The development was motivated in the context of the analysis of 16S metagenomic data by the need to convert the .ace files for further analysis.
See: ace_to_fastq
print method for an object of class ace2fastq
## S3 method for class 'ace2fastq' print(x, ...)
## S3 method for class 'ace2fastq' print(x, ...)
x |
an ace2fastq object |
... |
other print parameters |
Reinhard Simon