Skip to content

Commit 7b6dd91

Browse files
authored
Merge pull request #179 from broadinstitute/dp-bits-tar-fix
remove recursion limit on find for RunInfo.xml
2 parents ba04a93 + 137dd7e commit 7b6dd91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pipes/WDL/tasks/tasks_demux.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ task illumina_demux {
8585
RUNINFO_FILE="${runinfo}"
8686
else
8787
# full RunInfo.xml path
88-
RUNINFO_FILE="$(find $FLOWCELL_DIR -type f -maxdepth 3 -name RunInfo.xml | head -n 1)"
88+
RUNINFO_FILE="$(find $FLOWCELL_DIR -type f -name RunInfo.xml | head -n 1)"
8989
fi
9090

9191
# Parse the lane count & run ID from RunInfo.xml file

0 commit comments

Comments
 (0)