Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
14d2b50c
Commit
14d2b50c
authored
15 years ago
by
kohleman
Browse files
Options
Downloads
Patches
Plain Diff
- number of lane is now a mandatory parameter
- added parallel usage (backgrounding of one process per lane) SVN: 13110
parent
fd3a1264
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
deep_sequencing_unit/source/bash/lanes2srf_RTA
+13
-3
13 additions, 3 deletions
deep_sequencing_unit/source/bash/lanes2srf_RTA
with
13 additions
and
3 deletions
deep_sequencing_unit/source/bash/lanes2srf_RTA
+
13
−
3
View file @
14d2b50c
#!/bin/bash
export
BUSTARD
=
$1
export
NUMBER_OF_LANES
=
$2
export
SRF_DIR
=
Srf_RTA
export
ILLUMINA2SRF
=
/usr/local/dsu/bin/illumina2srf
export
PRG
=
`
basename
$0
`
export
USAGE
=
"Usage:
${
PRG
}
<Path_to_Bustard_Folder> <Number_of_Lanes>
\n\n
EXAMPLE:
${
PRG
}
/array0/Runs/090720_42HUDAAXX/Data/Intensities/Bustard/ 8"
if
[
-z
"
${
BUSTARD
}
"
-o
-z
"
${
NUMBER_OF_LANES
}
"
]
then
echo
"
${
USAGE
}
"
exit
1
fi
[
-d
$SRF_DIR
]
||
mkdir
$SRF_DIR
for
a
in
1 2 3 4 5 6 7 8
;
do
for
((
a
=
1
;
a<
=
$NUMBER_OF_LANES
;
a++
))
;
do
echo
Converting Lane
$a
to SRF
$ILLUMINA2SRF
-b
-o
$SRF_DIR
/s_
${
a
}
_RTA.srf
$BUSTARD
/s_
${
a
}
_
*
_qseq.txt
;
done
$ILLUMINA2SRF
-b
-o
$SRF_DIR
/s_
${
a
}
_RTA.srf
$BUSTARD
/s_
${
a
}
_
*
_qseq.txt
&
;
done
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment