Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellranger_mkfastq
Manage
Activity
Members
Labels
Plan
Issues
7
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
BICF
Astrocyte
cellranger_mkfastq
Commits
be778768
Commit
be778768
authored
5 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Plain Diff
Merge branch '29-CountDesign' into 'develop'
Resolve "Fix CountDesign" Closes
#29
See merge request
!44
parents
6dda9f06
90cc2803
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!45
Develop
,
!44
Resolve "Fix CountDesign"
Pipeline
#4623
passed with stages
in 2 minutes
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+0
-8
0 additions, 8 deletions
.gitlab-ci.yml
CHANGELOG.md
+1
-1
1 addition, 1 deletion
CHANGELOG.md
workflow/scripts/countDesign.sh
+12
-12
12 additions, 12 deletions
workflow/scripts/countDesign.sh
with
13 additions
and
21 deletions
.gitlab-ci.yml
+
0
−
8
View file @
be778768
...
...
@@ -25,11 +25,6 @@ astrocyte_check:
simple_1FC
:
stage
:
simple
except
:
changes
:
-
"
**/*.md"
refs
:
-
tags
script
:
-
nextflow run workflow/main.nf --bcl "test_data/simple1/*.tar.gz" --designFile "test_data/simple1/cellranger-tiny-bcl-simple-1_2_0.csv"
-
pytest -m simple1
...
...
@@ -47,9 +42,6 @@ simple_1FC:
simple_2FC
:
stage
:
simple
except
:
changes
:
-
"
**/*.md"
script
:
-
nextflow run workflow/main.nf --bcl "test_data/simple2/*.tar.gz" --designFile "test_data/simple2/cellranger-tiny-bcl-simple-1_2_0.csv"
-
pytest -m simple2
...
...
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
1
−
1
View file @
be778768
# v1.3.0 (in development)
**User Facing**
*
Change Cellranger Version to 3.1.0
*
Fix countDesign to take multiple samples
**Background**
*
Add CI artifacts
*
Add Except md to CI
*Known Bugs*
*
cellranger mkfastq will not accept spaces in path for run param even if quoted, issue raised on 10XGenomics/cellranger github issue
[
#31
](
https://github.com/10XGenomics/cellranger/issues/31
)
...
...
This diff is collapsed.
Click to expand it.
workflow/scripts/countDesign.sh
+
12
−
12
View file @
be778768
#!/bin/bash
#countDesign.sh
fastqs
=
$(
ls
*
.fastq.gz
)
fastqs
=
(
$(
ls
*
.fastq.gz
)
)
design
=
$(
ls
*
.csv
)
sample
=
$(
cat
${
design
}
|
tail
-n
+2 |
cut
-d
','
-f2
)
for
i
in
${
fastqs
}
;
echo
"Sample,fastq_R1,fastq_R2"
>
Cellranger_Count_Design.csv
;
for
i
in
${
sample
}
;
do
if
[[
${
i
}
==
*
_S0_
*
]]
;
then
continue
elif
[[
${
i
}
==
*
_I
*
]]
;
then
continue
else
good
=(
${
good
[@]
}
${
i
}
)
fi
for
j
in
$(
seq
1
${#
fastqs
[@]
}
)
;
do
if
[[
${
fastqs
[
${
j
}
-1]
}
==
*
_I
*
]]
;
then
continue
elif
[[
${
fastqs
[
${
j
}
-1]
}
==
*${
i
}*
&&
${
fastqs
[
${
j
}
]
}
==
*${
i
}*
]]
;
then
echo
"
${
i
}
,
${
fastqs
[
${
j
}
-1]
}
,
${
fastqs
[
${
j
}
]
}
"
>>
Cellranger_Count_Design.csv
fi
done
done
echo
"Sample,fastq_R1,fastq_R2"
>
Cellranger_Count_Design.csv
;
echo
"
${
sample
}
,
${
good
[0]
}
,
${
good
[1]
}
"
>>
Cellranger_Count_Design.csv
;
This diff is collapsed.
Click to expand it.
Preview
0%
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