Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plmc infers [undirected graphical models](https://en.wikipedia.org/wiki/Markov_r
plmc -c couplingsfile alignmentfile
plmc -o paramfile -c couplingsfile alignmentfile
plmc [-h | --help]

Required input:
alignmentfile Multiple sequence alignment in FASTA format

Expand All @@ -24,9 +24,9 @@ plmc infers [undirected graphical models](https://en.wikipedia.org/wiki/Markov_r
-lg --lambdag <value> Set group L1 lambda for couplings (e_ij)

Options, general:
-a --alphabet alphabet Alternative alphabet (default 21: -ACDEFGHIKLMNPQRSTVWY)
-a --alphabet alphabet Alternative character set to use for analysis
-f --focus identifier Select only uppercase, non-gapped sites from a focus sequence
-g --gapignore Exclude first alphabet character from potential calculations
-g --gapignore Model sequence likelihoods only by coding, non-gapped portions
-m --maxiter Maximum number of iterations
-n --ncores [<number>|max] Maximum number of threads to use in OpenMP
-h --help Usage
Expand Down
10 changes: 5 additions & 5 deletions src/plm.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ const char *usage =
"plmc\n"
"\n"
"Usage:\n"
" plm [options] alignmentfile\n"
" plm -c couplingsfile alignmentfile\n"
" plm -o paramfile -c couplingsfile alignmentfile\n"
" plm [-h | --help]\n"
" plmc [options] alignmentfile\n"
" plmc -c couplingsfile alignmentfile\n"
" plmc -o paramfile -c couplingsfile alignmentfile\n"
" plmc [-h | --help]\n"
" \n"
" Required input:\n"
" alignmentfile Multiple sequence alignment in FASTA format\n"
Expand Down Expand Up @@ -951,4 +951,4 @@ void OutputCouplingScores(char *couplingsFile, const numeric_t *x,
fprintf(stderr, "Error writing coupling scores\n");
exit(1);
}
}
}