Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
variant_germline
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
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
variant_germline
Commits
1d676bc1
Commit
1d676bc1
authored
7 years ago
by
Brandi Cantarel
Browse files
Options
Downloads
Patches
Plain Diff
change FullPathToFq to Fq in design file
parent
43798735
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+2
-0
2 additions, 0 deletions
README.md
docs/index.md
+2
-2
2 additions, 2 deletions
docs/index.md
workflow/main.nf
+2
-2
2 additions, 2 deletions
workflow/main.nf
with
6 additions
and
4 deletions
README.md
+
2
−
0
View file @
1d676bc1
## Variant Analysis Worklow
```
module load nextflow/0.24.1-SNAPSHOT
nextflow run workflow/main.nf
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
docs/index.md
+
2
−
2
View file @
1d676bc1
...
...
@@ -63,9 +63,9 @@ The following columns are necessary, must be named as in template and can be in
2= Case or Diseaes Phenotype, 1= Healthy Control
Gender
1=male, 2=female
FullPathTo
FqR1
FqR1
Name of the fastq file R1
FullPathTo
FqR2
FqR2
Name of the fastq file R2
There are some optional columns that might help with the analysis:
...
...
This diff is collapsed.
Click to expand it.
workflow/main.nf
+
2
−
2
View file @
1d676bc1
...
...
@@ -42,8 +42,8 @@ new File(params.design).withReader { reader ->
def hline = reader.readLine()
def header = hline.split("\t")
prefixidx = header.findIndexOf{it == 'SampleID'};
oneidx = header.findIndexOf{it == '
FullPathTo
FqR1'};
twoidx = header.findIndexOf{it == '
FullPathTo
FqR2'};
oneidx = header.findIndexOf{it == 'FqR1'};
twoidx = header.findIndexOf{it == 'FqR2'};
if (twoidx == -1) {
twoidx = oneidx
}
...
...
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