Package 'ace2fastq'

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

Help Index


ace_to_fastq

Description

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.

Usage

ace_to_fastq(filename, target_dir = dirname(filename), name2id = TRUE)

Arguments

filename

.ace file

target_dir

target directory or stdout

name2id

use the file name as primary id or not. Default is TRUE.

Value

list

Author(s)

Reinhard Simon

Examples

library(ace2fastq)
  filename <- system.file("sampledat/1.seq.ace", package = "ace2fastq")
 
  fileout <- ace_to_fastq(filename, target_dir = tempdir())

ace2fastq

Description

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.

ace2fastq functionality

See: ace_to_fastq


print.ace2fastq

Description

print method for an object of class ace2fastq

Usage

## S3 method for class 'ace2fastq'
print(x, ...)

Arguments

x

an ace2fastq object

...

other print parameters

Author(s)

Reinhard Simon