Skip to content

Commit

Permalink
escape wildcard characters
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Aug 14, 2020
1 parent 027d098 commit ab8aaba
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
12 changes: 6 additions & 6 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ if (!params.skip_ncbimeta_db_create && params.ncbimeta_create){
Publish:
ncbimeta_sqlite_db (sqlite): NCBImeta SQLite database.
ncbimeta_yaml (yaml): NCBImeta config file.
*.log (text): Text logs of NCBImeta database creation.
\*.log (text): Text logs of NCBImeta database creation.
*/

Expand Down Expand Up @@ -240,8 +240,8 @@ if(!params.skip_ncbimeta_db_update && params.ncbimeta_update){
Publish:
ncbimeta_yaml (yaml): NCBImeta config file.
*.log (text): Text logs of NCBImeta database update.
*.txt (text): Text export of NCBImeta database.
\*.log (text): Text logs of NCBImeta database update.
\*.txt (text): Text export of NCBImeta database.
*/

Expand Down Expand Up @@ -1289,8 +1289,8 @@ process snippy_multi_filter{
Publish:
snippy_core_full_aln.filter\*.fasta (fasta): Multi fasta of filtered chromosome genome sites.
*.fasta (fasta): All loci extracted fasta files.
*.bed (bed): All loci bed coordinate files for extraction.
\*.fasta (fasta): All loci extracted fasta files.
\*.bed (bed): All loci bed coordinate files for extraction.
*/
// Other variables and config
Expand Down Expand Up @@ -1772,7 +1772,7 @@ process multiqc{
Publish:
multiqc_report.html (html): MultiQC report file.
*_data (misc): All default MultiQC data files.
\*_data (misc): All default MultiQC data files.
*/
// Other variables and config
Expand Down
6 changes: 4 additions & 2 deletions scripts/process_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
H2_CHAR = "*"
H3_CHAR = "-"
TABLE_CHAR = "="
TABLE_COL_WIDTH = 40
TABLE_COL_WIDTH = 50
# -----------------------------------------------------------------------------#
# Processing #
# -----------------------------------------------------------------------------#
Expand All @@ -77,7 +77,9 @@
if line.startswith("// Section: "):
split_section = line.split("Section: ")
section_name = split_section[1]
rst_file.write(section_name + "\n" + H2_CHAR * len(section_name) + "\n")
rst_file.write(
"\n" + section_name + "\n" + H2_CHAR * len(section_name) + "\n"
)
# Skip everything else that is not process
if line.startswith("process"):
# Parse the process lines
Expand Down

0 comments on commit ab8aaba

Please sign in to comment.