Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix constant name in gridsstools.c #597

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

## Summary

GRIDSS analyses multiple bams from a single patient simulataneously, thus
GRIDSS analyses multiple bams from a single patient simultaneously, thus
achieving high sensitivity and consistency between samples. This software
package provides docker images and helper scripts to easily run GRIDSS on bam files from a
cohort of patients with one or more samples per patient.
Expand Down Expand Up @@ -48,4 +48,4 @@ Note that if you do not have a bwa index for your reference genome, this script

### Execute run scripts

Once the run scripts have been generated, these can be executed directly or scheduled on a cluster. In dockerised form, GRIDSS requires up to 24Gb (16 for GRIDSS, 8 for bwa) of memory and 4 cores.
Once the run scripts have been generated, these can be executed directly or scheduled on a cluster. In dockerised form, GRIDSS requires up to 24Gb (16 for GRIDSS, 8 for bwa) of memory and 4 cores.
4 changes: 2 additions & 2 deletions src/main/c/gridsstools/gridsstools.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ int main(int argc, char *argv[]) {
else if (strcmp(argv[1], "extractFragmentsToBam") == 0) return main_extractFragmentsToBam(argc-1, argv+1);
else if (strcmp(argv[1], "unmappedSequencesToFastq") == 0) return main_unmappedSequencesToFastq(argc-1, argv+1);
else if (strcmp(argv[1], "-v") == 0 || strcmp(argv[1], "--version") == 0) {
fprintf(stdout, "%s\n", PACKAGE_STRING);
fprintf(stdout, "%s\n", PACKAGE_VERSION);
return 0;
} else {
fprintf(stderr, "[main] unrecognized command '%s'\n", argv[1]);
return 1;
}
return 0;
}
}