Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
ngs_tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bioinfo
ngs_tools
Commits
37ca0314
Commit
37ca0314
authored
9 years ago
by
Holger Brandl
Browse files
Options
Downloads
Patches
Plain Diff
adjusted to use new .logs directory
parent
129c852e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+11
-3
11 additions, 3 deletions
README.md
dge_workflow/cutadapt_summary.R
+2
-2
2 additions, 2 deletions
dge_workflow/cutadapt_summary.R
with
13 additions
and
5 deletions
README.md
+
11
−
3
View file @
37ca0314
...
...
@@ -46,15 +46,23 @@ How to create a new version tag
1.
Create branch:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cd /Volumes/projects/bioinfo/scripts/ngs_tools/dev
git checkout -b v3.23
git push
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1.
Checkout branch into ngs
\_
tools
1.
Checkout
new
branch into ngs
\_
tools
as stable version
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cd /Volumes/projects/bioinfo/scripts/ngs_tools/
mkdir v3.23
git clone —> git checkout v3.23
newVersion=v1.1
mkdir $newVersion
cd $newVersion
git clone git-srv1:/local/git/bioinformatics .
git checkout ${newVersion}
## prevent from writing
chmod -R -w ../$newVersion
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
...
...
This diff is collapsed.
Click to expand it.
dge_workflow/cutadapt_summary.R
+
2
−
2
View file @
37ca0314
...
...
@@ -17,7 +17,7 @@ argv = commandArgs(TRUE)
#if(str_detect(argv[1], "fastqc_summary")) argv <- argv[-1]
if
(
length
(
argv
)
!=
1
){
stop
(
"Usage:
First_t
ry.R <directory with cutadapt log files>"
)
stop
(
"Usage:
cutadapt_summa
ry.R <directory with cutadapt log files>"
)
}
baseDir
=
argv
[
1
]
...
...
@@ -31,7 +31,7 @@ if(is.na(file.info(baseDir)$isdir)){
# baseDir="/home/mel/MPI-Bioinf/Project1_reads/141126_cutadapt_logs"
logDataFiles
<-
list.files
(
path
=
baseDir
,
pattern
=
"__ca__.*.out.log"
,
full.names
=
TRUE
,
recursive
=
T
)
logDataFiles
<-
list.files
(
path
=
file.path
(
baseDir
,
".logs"
)
,
pattern
=
"__ca__.*.out.log"
,
full.names
=
TRUE
,
recursive
=
T
)
#echo("files are", logDataFiles)
...
...
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