Skip to content

Commit

Permalink
add missing trailing commas in example config file
Browse files Browse the repository at this point in the history
  • Loading branch information
lgatto authored and lazear committed Jan 2, 2023
1 parent b1f4c3d commit 31fbc7d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,19 +186,19 @@ Internally generated decoys will have protein accessions matching "{decoy_tag}{a
"C": 57.0215 // Apply static modification to cysteine
},
"variable_mods": { // Optional[Dict[char, float]] {default={}}, variable modifications
"M": 15.9949 // Variable mods are applied *before* static mods
"$": 49.2022 // Apply variable modification to C-terminus of peptide
"[": 42.0 // Apply variable modification to N-terminus of protein
"M": 15.9949, // Variable mods are applied *before* static mods
"$": 49.2022, // Apply variable modification to C-terminus of peptide
"[": 42.0, // Apply variable modification to N-terminus of protein
"]": 111.0 // Apply variable modification to C-terminus of protein
},
"max_variable_mods": 2, // Optional[int] {default=2} Limit k-combinations of variable modifications
"decoy_tag": "rev_", // Optional[str] {default="rev_"}: See notes above
"generate_decoys": false // Optional[bool] {default="true"}: Ignore decoys in FASTA database matching `decoy_tag`
"generate_decoys": false, // Optional[bool] {default="true"}: Ignore decoys in FASTA database matching `decoy_tag`
"fasta": "dual.fasta" // str: mandatory path to FASTA file
},
"quant": { // Optional - specify only if TMT or LFQ
"tmt": "Tmt16", // Optional[str] {default=null}, one of "Tmt6", "Tmt10", "Tmt11", "Tmt16", or "Tmt18"
"lfq": true, // Optional[bool] {default=null}, perform label-free quantification
"lfq": true // Optional[bool] {default=null}, perform label-free quantification
},
"precursor_tol": { // Tolerance can be either "ppm" or "da"
"da": [
Expand Down

0 comments on commit 31fbc7d

Please sign in to comment.