|
1 | | -Traceback (most recent call last): |
2 | | - File "/home/falmeida/Documents/GitHub/pythonScripts/falmeida-py-runner.py", line 18, in <module> |
3 | | - from falmeida_py.__main__ import main |
4 | | - File "/home/falmeida/Documents/GitHub/pythonScripts/falmeida_py/__main__.py", line 47, in <module> |
5 | | - from docopt import docopt |
6 | | -ModuleNotFoundError: No module named 'docopt' |
| 1 | +A script meant to subset a genbank annotation file based on alignments against a query (Nucleotide) FASTA file |
| 2 | + |
| 3 | +--- |
| 4 | +Copyright (C) 2020 Felipe Marques de Almeida (almeidafmarques@gmail.com) |
| 5 | +License: Public Domain |
| 6 | + |
| 7 | +Usage: |
| 8 | + falmeida-py align2subsetgbk [ -h|--help ] |
| 9 | + falmeida-py align2subsetgbk [ --gbk <in_gbk> --fasta <fasta> --out <out_gbk> --minid <int> --mincov <int> --culling_limit <int> --extension <int> ] |
| 10 | + |
| 11 | +Options: |
| 12 | + -h --help Show this screen. |
| 13 | + -g --gbk=<in_gbk> Gbk file for subset |
| 14 | + -f --fasta=<fasta> FASTA (nucl) file for querying the gbk |
| 15 | + -o --out=<out_gbk> Gbk filtered output file [Default: out.gbk]. |
| 16 | + --extension=<int> Base pair length to extend the flank regions in the alignment [Default: 0]. |
| 17 | + --minid=<int> Min. Identity percentage for gene annotation [Default: 80]. |
| 18 | + --mincov=<int> Min. Covereage for gene annotation [Default: 80]. |
| 19 | + --culling_limit=<int> Blast culling_limit for best hit only [Default: 1]. |
| 20 | +falmeida-py: a package to the simple distribution of my custom scripts. |
| 21 | + |
| 22 | +Copyright (C) 2020 Felipe Marques de Almeida (almeidafmarques@gmail.com) |
| 23 | +License: Public Domain |
| 24 | + |
| 25 | +usage: |
| 26 | + falmeida-py [ -h|--help ] [ -v|--version ] [ --license ] |
| 27 | + falmeida-py <command> [ -h|--help ] [ <args>... ] |
| 28 | + |
| 29 | +options: |
| 30 | + -h --help Show this screen |
| 31 | + -v --version Show version information |
| 32 | + --license Show LEGAL LICENSE information |
| 33 | + |
| 34 | +commands: |
| 35 | + tsv2markdown Command for rapid convertion of tsv or csv to markdown tables. |
| 36 | + splitgbk Command to split multisequence genbank files into individual files. |
| 37 | + align2subsetgbk Command to subset genbank files based on alignments to a FASTA file. |
| 38 | + gbk2fasta Command to convert genbank files to fasta files. |
| 39 | + blasts Command to execute automatized blast commands. |
| 40 | + replace_fasta_seq Command to replace strings in a FASTA using defitinitions from a BED file |
| 41 | + mpgap2csv Command to summarize main mpgap multiqc assembly statistics into a CSV file |
| 42 | + bacannot2json Command to summarize main bacannot annotation results into JSON file |
| 43 | + |
| 44 | +Use: `falmeida-py <commmand> -h` to get more help and see examples. |
0 commit comments