Files
obitools4/pkg/obitools/obiconvert/options.go

157 lines
4.5 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package obiconvert
import (
"github.com/DavidGamba/go-getoptions"
)
var __skipped_entries__ = 0
var __read_only_entries__ = -1
var __no_ordered_input__ = false
var __input_fastjson_format__ = false
var __input_fastobi_format__ = false
var __input_ecopcr_format__ = false
var __input_embl_format__ = false
var __input_genbank_format__ = false
var __input_solexa_quality__ = false
var __output_in_fasta__ = false
var __output_in_fastq__ = false
var __output_fastjson_format__ = false
var __output_fastobi_format__ = false
var __output_solexa_quality__ = false
func InputOptionSet(options *getoptions.GetOpt) {
// options.IntVar(&__skipped_entries__, "skip", __skipped_entries__,
// options.Description("The N first sequence records of the file are discarded from the analysis and not reported to the output file."))
// options.IntVar(&__read_only_entries__, "only", __read_only_entries__,
// options.Description("Only the N next sequence records of the file are analyzed. The following sequences in the file are neither analyzed, neither reported to the output file. This option can be used conjointly with the skip option."))
options.BoolVar(&__input_fastjson_format__, "input-json-header", __input_fastjson_format__,
options.Description("FASTA/FASTQ title line annotations follow json format."))
options.BoolVar(&__input_fastobi_format__, "input-OBI-header", __input_fastobi_format__,
options.Description("FASTA/FASTQ title line annotations follow OBI format."))
options.BoolVar(&__input_ecopcr_format__, "ecopcr", __input_ecopcr_format__,
options.Description("Read data following the ecoPCR output format."))
options.BoolVar(&__input_embl_format__, "embl", __input_embl_format__,
options.Description("Read data following the EMBL flatfile format."))
options.BoolVar(&__input_genbank_format__, "genbank", __input_genbank_format__,
options.Description("Read data following the Genbank flatfile format."))
options.BoolVar(&__input_solexa_quality__, "solexa", __input_solexa_quality__,
options.Description("Decodes quality string according to the Solexa specification."))
options.BoolVar(&__no_ordered_input__, "no-order", __no_ordered_input__,
options.Description("When several imput files are provided, "+
"indicates that there is no order among them."))
}
func OutputOptionSet(options *getoptions.GetOpt) {
options.BoolVar(&__output_in_fasta__, "fasta-output", false,
options.Description("Read data following the ecoPCR output format."))
options.BoolVar(&__output_in_fastq__, "fastq-output", false,
options.Description("Read data following the EMBL flatfile format."))
options.BoolVar(&__output_fastjson_format__, "output-json-header", false,
options.Description("output FASTA/FASTQ title line annotations follow json format."))
options.BoolVar(&__output_fastobi_format__, "output-OBI-header", false,
options.Alias("O"),
options.Description("output FASTA/FASTQ title line annotations follow OBI format."))
options.BoolVar(&__output_solexa_quality__, "solexa-output", false,
options.Description("Encodes quality string according to the Solexa specification."))
}
func OptionSet(options *getoptions.GetOpt) {
InputOptionSet(options)
OutputOptionSet(options)
}
// Returns true if the number of reads described in the
// file has to be printed.
func CLIInputFormat() string {
switch {
case __input_ecopcr_format__:
return "ecopcr"
case __input_embl_format__:
return "embl"
case __input_genbank_format__:
return "genbank"
default:
return "guessed"
}
}
// Returns true if the order among several imput files has not to be considered
func CLINoInputOrder() bool {
return __no_ordered_input__
}
func CLIOutputFormat() string {
switch {
case __output_in_fastq__:
return "fastq"
case __output_in_fasta__:
return "fasta"
default:
return "guessed"
}
}
func CLIInputFastHeaderFormat() string {
switch {
case __input_fastjson_format__:
return "json"
case __input_fastobi_format__:
return "obi"
default:
return "guessed"
}
}
func CLIOutputFastHeaderFormat() string {
switch {
case __output_fastjson_format__:
return "json"
case __output_fastobi_format__:
return "obi"
default:
return "json"
}
}
// Returns the count of sequences to skip at the beginning of the
// processing.
func CLISequencesToSkip() int {
return __skipped_entries__
}
func CLIAnalyzeOnly() int {
return __read_only_entries__
}
func CLIInputQualityShift() int {
if __input_solexa_quality__ {
return 64
} else {
return 33
}
}
func CLIOutputQualityShift() int {
if __output_solexa_quality__ {
return 64
} else {
return 33
}
}