-
Notifications
You must be signed in to change notification settings - Fork 37
Updating parameters schema and readme #20
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
Open
reganhayward
wants to merge
2
commits into
nf-core:dev
Choose a base branch
from
reganhayward:updating-parameters
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -287,12 +287,14 @@ | |
| "libtype": { | ||
| "type": "string", | ||
| "description": "Options for setting the library type. A = automatic detection", | ||
| "fa_icon": "fas fa-sliders-h" | ||
| "fa_icon": "fas fa-sliders-h", | ||
| "default": "A" | ||
| }, | ||
| "incompatPrior": { | ||
| "type": "integer", | ||
| "type": "string", | ||
| "description": "By default, this is set to 0.0, to ensure that only mappings or alignments that are compatible with the specified library type are considered by Salmon", | ||
| "fa_icon": "fas fa-sliders-h" | ||
| "fa_icon": "fas fa-sliders-h", | ||
| "default": "0.0" | ||
| }, | ||
| "generate_salmon_uniq_ambig": { | ||
| "type": "boolean", | ||
|
|
@@ -309,7 +311,7 @@ | |
| "gene_feature_gff_to_create_transcriptome_pathogen": { | ||
| "type": "string", | ||
| "default": "gene,sRNA,tRNA,rRNA", | ||
| "description": "The pipeline uses gene features from the 3rd column of the pathogen annotative fikle (gff3) to extract the coordinates of transcripts to be quantified. By default, the pipeline uses features as `gene`, `sRNA`, `tRNA` and `rRNA` from the `--gff_pathogen` file. Should be a comma-separated string.", | ||
| "description": "The pipeline uses gene features from the 3rd column of the pathogen annotative file (gff3) to extract the coordinates of transcripts to be quantified. By default, the pipeline uses features as `gene`, `sRNA`, `tRNA` and `rRNA` from the `--gff_pathogen` file. Should be a comma-separated string.", | ||
| "fa_icon": "fas fa-sliders-h" | ||
| }, | ||
| "gene_attribute_gff_to_create_transcriptome_host": { | ||
|
|
@@ -485,7 +487,7 @@ | |
| "limitBAMsortRAM": { | ||
| "type": "integer", | ||
| "description": "Option to limit RAM when sorting BAM file. If 0, will be set to the genome index size, which can be quite large when running on a desktop or laptop", | ||
| "default": "0", | ||
| "default": 0, | ||
| "fa_icon": "fas fa-sliders-h" | ||
| }, | ||
| "winAnchorMultimapNmax": { | ||
|
|
@@ -499,6 +501,28 @@ | |
| "default": 100, | ||
| "description": "Option to specify the length of the donor/acceptor sequence on each side of the junctions used in constructing the splice junctions database. By default the option is set to 100. However, we recommend setting a value depending on the read length: read/mate length - 1.", | ||
| "fa_icon": "fas fa-sliders-h" | ||
| }, | ||
| "outWigType": { | ||
| "type": "string", | ||
| "default": "None", | ||
| "description": "Used to generate signal outputs, such as \"wiggle\" and \"bedGraph\".", | ||
| "fa_icon": "fas fa-sliders-h" | ||
| }, | ||
| "outWigStrand": { | ||
| "type": "string", | ||
| "default": "Stranded", | ||
| "description": "Options are Stranded or Unstranded when defining the strandedness of wiggle/bedGraph output", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please use the This can be done via the little settings cog on the right hand side in the |
||
| "fa_icon": "fas fa-sliders-h" | ||
| }, | ||
| "star_index_params": { | ||
| "type": "string", | ||
| "description": "Set of additional parameters for creating an index with STAR", | ||
| "fa_icon": "fas fa-ellipsis-h" | ||
| }, | ||
| "star_alignment_params": { | ||
| "type": "string", | ||
| "description": "Set of additional parameters for alignment with STAR", | ||
| "fa_icon": "fas fa-ellipsis-h" | ||
| } | ||
| }, | ||
| "fa_icon": "fas fa-star" | ||
|
|
@@ -528,37 +552,6 @@ | |
| }, | ||
| "fa_icon": "fas fa-star" | ||
| }, | ||
| "star_htseq": { | ||
| "title": "STAR - HTseq", | ||
| "type": "object", | ||
| "description": "Parameters available for STAR - HTSeq", | ||
| "default": "", | ||
| "properties": { | ||
| "outWigType": { | ||
| "type": "string", | ||
| "default": "None", | ||
| "description": "Used to generate signal outputs, such as \"wiggle\" and \"bedGraph\".", | ||
| "fa_icon": "fas fa-sliders-h" | ||
| }, | ||
| "outWigStrand": { | ||
| "type": "string", | ||
| "default": "Stranded", | ||
| "description": "Options are Stranded or Unstranded when defining the strandedness of wiggle/bedGraph output", | ||
| "fa_icon": "fas fa-sliders-h" | ||
| }, | ||
| "star_index_params": { | ||
| "type": "string", | ||
| "description": "Set of additional parameters for creating an index with STAR", | ||
| "fa_icon": "fas fa-ellipsis-h" | ||
| }, | ||
| "star_alignment_params": { | ||
| "type": "string", | ||
| "description": "Set of additional parameters for alignment with STAR", | ||
| "fa_icon": "fas fa-ellipsis-h" | ||
| } | ||
| }, | ||
| "fa_icon": "fas fa-star" | ||
| }, | ||
| "htseq_general": { | ||
| "title": "HTSeq - general", | ||
| "type": "object", | ||
|
|
@@ -838,9 +831,6 @@ | |
| { | ||
| "$ref": "#/definitions/star_salmon_alignment_based_mode" | ||
| }, | ||
| { | ||
| "$ref": "#/definitions/star_htseq" | ||
| }, | ||
| { | ||
| "$ref": "#/definitions/htseq_general" | ||
| }, | ||
|
|
@@ -857,4 +847,4 @@ | |
| "$ref": "#/definitions/institutional_config_options" | ||
| } | ||
| ] | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this meant to be a string?