biozsh icon indicating copy to clipboard operation
biozsh copied to clipboard

Whishlist

Open kloetzl opened this issue 6 years ago • 2 comments

Here is an assorted list of tools for which completions might be of interest to some users.

  • [ ] annovar
  • [ ] bamstats
  • [ ] bcftools
  • [ ] beagle
  • [ ] BigWig
  • [ ] bismark
  • [ ] callisto
  • [ ] chimira
  • [ ] cufflinks
  • [ ] cutadapt
  • [ ] # DEseq2 - not a command line tool
  • [x] Diamond — Done by @cgjosephlee in #9
  • [ ] edgeR
  • [ ] elprep
  • [ ] exomedepth
  • [ ] impute
  • [ ] kraken
  • [ ] micca
  • [ ] muscan
  • [ ] nextgenmap
  • [ ] Picard
  • [ ] pindel
  • [ ] qualimap
  • [ ] quiime2
  • [ ] sambamba
  • [ ] scalpel
  • [ ] sleuth
  • [ ] snpeff
  • [ ] star
  • [ ] sylamer
  • [ ] tandemrepeatsfinder
  • [ ] tophat2
  • [ ] trimgalore
  • [ ] varscan2
  • [ ] vntrseek
  • [ ] zoom

kloetzl avatar Jan 02 '18 14:01 kloetzl

Hi @kloetzl, thank you for awesome plugin. I'm new to zsh community, and I'm trying to work on diamond autocomplete script. Since many subcommands in diamond share same options (e.g. blastx, blastp), are there any clever way to share options between subcommands instead of duplicating them?

cgjosephlee avatar Jul 11 '18 02:07 cgjosephlee

As long as all your subcommands are handled within the same completion script you could declare a global variable containing the shared options and add those to the individual options. The exact syntax may differ from case to case.

kloetzl avatar Jul 11 '18 07:07 kloetzl