File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Metagenomics/Illumina/Workflow_Documentation/NF_MGIllumina-A/workflow_code/modules Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ nextflow.enable.dsl = 2
7
7
process GET_RUNSHEET {
8
8
9
9
beforeScript " chmod +x ${ baseDir} /bin/create_runsheet.sh"
10
+ tag " Downloading raw fastq files and runsheet for ${ accession} ..."
10
11
11
12
input:
12
13
val(accession)
@@ -17,7 +18,7 @@ process GET_RUNSHEET {
17
18
path(" versions.txt" ), emit: version
18
19
script:
19
20
"""
20
- # Download ISA zip file for the GLDS_accession then unzip it
21
+ # Download ISA zip file for the GLDS/OSD accession then unzip it
21
22
GL-download-GLDS-data -g ${ accession} -p ISA -f && unzip *-ISA.zip
22
23
23
24
if [ ${ params.RawFilePattern} == null ];then
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ process MAPPING {
30
30
else
31
31
32
32
touch ${ sample_id} .sam
33
+ echo "Mapping not performed for ${ sample_id} because the assembly didn't produce anything." > ${ sample_id} -mapping-info.txt
33
34
printf "Mapping not performed for ${ sample_id} because the assembly didn't produce anything.\\ n"
34
35
35
36
fi
@@ -48,6 +49,7 @@ process MAPPING {
48
49
else
49
50
50
51
touch ${ sample_id} .sam
52
+ echo "Mapping not performed for ${ sample_id} because the assembly didn't produce anything." > ${ sample_id} -mapping-info.txt
51
53
printf "Mapping not performed for ${ sample_id} because the assembly didn't produce anything.\\ n"
52
54
53
55
fi
You can’t perform that action at this time.
0 commit comments