Skip to content

Commit d1bcb32

Browse files
committed
Fixed Typos
1 parent 0f3e1a0 commit d1bcb32

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

Amplicon/Illumina/Workflow_Documentation/NF_AmpIllumina/workflow_code/post_processing.config

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ params {
33

44
publishDir_mode = "link" // "copy", "link", "symlink"
55
//-------- Parameters used to generate README.txt ------------------//
6-
name = "Olabiyi A. Obayomi" // name of analyst
7-
email = "olabiyi.a.obayomi@nasa.gov" // email of analyst
6+
name = "FirstName M. LastName" // name of analyst
7+
email = "name@nasa.gov" // email of analyst
88
// Genelab pipeline document protocol id used to process the data
99
protocol_id = "GL-DPPD-7104-B"
10-
GLDS_accession = "GLDS-487"
11-
OSD_accession = "OSD-487"
10+
GLDS_accession = "" // e.g "GLDS-487"
11+
OSD_accession = "" // e.g "OSD-487"
1212
assay_suffix = "_GLAmpSeq"
1313
readme = "README${params.assay_suffix}.txt"
1414
processing_zip_file = "processing_info${params.assay_suffix}.zip"
1515
/* extra parameters and arguments to GL-gen-processed-amplicon-data-readme command
1616
run `GL-gen-processed-amplicon-readme --help` for extra parameters that can be set
17-
"--raw-reads-dir '../Raw_Sequence_Data/' " for Metagenomics
17+
"--raw-reads-dir '../Raw_Sequence_Data/' "
1818
"--primers-already-trimmed" for Amplicon: if primers were trimmed prior to analysis
1919
*/
2020
readme_extra = ""
@@ -53,9 +53,9 @@ params {
5353
main = "./main.nf"
5454
config = "./nextflow.config"
5555
samples = "./unique-sample-IDs.txt"
56-
assay_table = "" //"../Genelab/a_GLDS-487_amplicon-sequencing_16s_illumina-1.txt"
57-
isa_zip = "../Genelab/OSD-487_metadata_GLDS-487-ISA.zip"
58-
runsheet = "../Genelab/GLfile.csv"
56+
assay_table = "" // e.g. "../Genelab/a_GLDS-487_amplicon-sequencing_16s_illumina-1.txt"
57+
isa_zip = "" // e.g. "../Genelab/OSD-487_metadata_GLDS-487-ISA.zip"
58+
runsheet = "" // e.g "../Genelab/GLfile.csv"
5959
software_versions = "../Metadata/software_versions.txt"
6060
}
6161

Amplicon/Illumina/Workflow_Documentation/NF_AmpIllumina/workflow_code/post_processing.nf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if(params.help){
3434
println(" --email [STRING] The analyst's email address. E.g. 'mail@nasa.gov'. Default: mail@nasa.gov")
3535
println(" --assay_suffix [STRING] Genelab's assay suffix. Default: _GLAmpSeq.")
3636
println(" --output_prefix [STRING] Unique name to tag onto output files. Default: empty string.")
37-
println(" --V_V_guidelines_link [URL] Genelab metagenomics data validation and verification guidelines link. Default: https://genelab-tools.arc.nasa.gov/confluence/pages/viewpage.action?pageId=8225175.")
37+
println(" --V_V_guidelines_link [URL] Genelab metagenomics data validation and verification guidelines link. Default: https://genelab-tools.arc.nasa.gov/confluence/pages/viewpage.action?pageId=2428598.")
3838
println(" --target_files [STRING] A comma separated list of target files and/or directories to find in processing_info.zip. Default: main.nf,nextflow.config,unique-sample-IDs.txt,envs/,bin/,config/,modules/.")
3939
println()
4040
println("File Suffixes:")
@@ -50,8 +50,8 @@ if(params.help){
5050
println()
5151
println("Extra parameters to scripts:")
5252
println(" --readme_extra [STRING] Extra parameters and arguments to GL-gen-processed-amplicon-data-readme command. Run 'GL-gen-processed-amplicon-readme --help' for extra parameters that can be set. Example '--raw-reads-dir ../Raw_Sequence_Data/'. Default: empty string")
53-
println(" --validation_extra [STRING] Extra parameters and arguments to GL-validate-processed-amplicon-data command. Run 'GL-validate-processed-amplicon-data --help' for extra parameters that can be set. Example '--single-ended --R1-used-as-single-ended-data --skip_raw_multiqc'. Default: '--skip_raw_multiqc' ")
54-
println(" --file_association_extra [STRING] Extra parameters and arguments to GL-gen-amplicon-file-associations-table command. Run 'GL-gen-amplicon-file-associations-table --help' for extra parameters that can be set. Example '--single-ended --R1-used-as-single-ended-data'. Default: '--use-sample-names-from-assay-table' ")
53+
println(" --validation_extra [STRING] Extra parameters and arguments to GL-validate-processed-amplicon-data command. Run 'GL-validate-processed-amplicon-data --help' for extra parameters that can be set. Example '--single-ended --R1-used-as-single-ended-data --skip_raw_multiqc'. Default: empty string ")
54+
println(" --file_association_extra [STRING] Extra parameters and arguments to GL-gen-amplicon-file-associations-table command. Run 'GL-gen-amplicon-file-associations-table --help' for extra parameters that can be set. Example '--single-ended --R1-used-as-single-ended-data'. Default: empty string ")
5555
println()
5656
println("Files:")
5757
println(" --files.main [PATH] The main workflow script used for processing. Default: ./main.nf")

0 commit comments

Comments
 (0)