Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var RootCmd = &cobra.Command{ Use: "goalign", Short: "goalign: A set of tools to handle sequence alignments", Long: `goalign: A set of tools to handle sequence alignments. It allows to : 1 - Convert formats 2 - Shuffle alignments 3 - Sample alignments 4 - Print informations about alignments 5 - Generate bootstrap alignments Input alignment file formats: 1. Fasta (default) 2. Phylip (-p option) 3. Nexus (-x option) 4. Clustal (-u option) 4. Auto detect (--auto-detect option). In that case, it will test input formats in the following order: 1. Fasta 2. Nexus 3. Phylip 4. Clustal If none of these formats is recognized, then will exit with an error Please note that in --auto-detect mode, phylip format is considered as not strict! `, PersistentPreRun: func(cmd *cobra.Command, args []string) { runtime.GOMAXPROCS(rootcpus) if seed == -1 { seed = time.Now().UTC().UnixNano() } rand.Seed(seed) }, Run: func(cmd *cobra.Command, args []string) { s := cobrashell.New() s.Println(fmt.Sprintf("Welcome to Goalign Console %s", version.Version)) s.Println("type \"help\" to get a list of available commands") cobrashell.AddCommands(s, cmd.Root(), nil, cmd.Root().Commands()...) s.Run() }, }
RootCmd represents the base command when called without any subcommands
Functions ¶
Types ¶
This section is empty.
Source Files ¶
- addgaps.go
- addid.go
- alleles.go
- append.go
- bootstrap.go
- build.go
- char.go
- clean.go
- cleanseqs.go
- cleansites.go
- clustal.go
- codonalign.go
- compress.go
- compute.go
- computedist.go
- computeentropy.go
- concat.go
- consensus.go
- dedup.go
- diff.go
- distboot.go
- divide.go
- draw.go
- draw_biojs.go
- draw_png.go
- extract.go
- fasta.go
- identical.go
- length.go
- mask.go
- maxchars.go
- mutate.go
- mutategaps.go
- nalign.go
- name.go
- nexus.go
- nseq.go
- orf.go
- paml.go
- phase.go
- phasent.go
- phylip.go
- pssm.go
- random.go
- rarefy.go
- recomb.go
- reformat.go
- rename.go
- replace.go
- revcomp.go
- rogue.go
- root.go
- sample.go
- sampleseq.go
- samplesites.go
- seq.go
- seqs.go
- shuffle.go
- sites.go
- sort.go
- split.go
- stats.go
- stats_alphabet.go
- stats_gaps.go
- stats_mutations.go
- stats_mutations_list.go
- subseq.go
- subset.go
- subsites.go
- sw.go
- swap.go
- taxa.go
- tnt.go
- translate.go
- transpose.go
- trim.go
- unalign.go
- version.go
Click to show internal directories.
Click to hide internal directories.