Skip to content

Commit 606af68

Browse files
authored
1.2.0 (#84)
* Removing ./idea/ and ./vscode/ from the git * Removing ./idea/ and ./vscode/ from the git * --tune_fdr now lists the default value in the help * the FDR threshold is now listed when using --tune * Adjusting FDR threshold formatting * Added in a flag to disable summary statistics * Added in an annotation coverage summary statistic as a default behavior (disabled with --disable_summary)
1 parent 254fa23 commit 606af68

File tree

12 files changed

+20
-124
lines changed

12 files changed

+20
-124
lines changed

.gitignore

Lines changed: 4 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -95,50 +95,6 @@ Network Trash Folder
9595
Temporary Items
9696
.apdisk
9797

98-
# -----------------------------------------------------------------------------
99-
# JetBrains
100-
# -----------------------------------------------------------------------------
101-
102-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
103-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
104-
105-
# User-specific stuff
106-
.idea/**/workspace.xml
107-
.idea/**/tasks.xml
108-
.idea/**/usage.statistics.xml
109-
.idea/**/dictionaries
110-
.idea/**/shelf
111-
112-
# Generated files
113-
.idea/**/contentModel.xml
114-
115-
# Sensitive or high-churn files
116-
.idea/**/dataSources/
117-
.idea/**/dataSources.ids
118-
.idea/**/dataSources.local.xml
119-
.idea/**/sqlDataSources.xml
120-
.idea/**/dynamic.xml
121-
.idea/**/uiDesigner.xml
122-
.idea/**/dbnavigator.xml
123-
124-
# Gradle
125-
.idea/**/gradle.xml
126-
.idea/**/libraries
127-
128-
# Gradle and Maven with auto-import
129-
# When using Gradle or Maven with auto-import, you should exclude module files,
130-
# since they will be recreated, and may cause churn. Uncomment if using
131-
# auto-import.
132-
# .idea/artifacts
133-
# .idea/compiler.xml
134-
# .idea/jarRepositories.xml
135-
# .idea/modules.xml
136-
# .idea/*.iml
137-
# .idea/modules
138-
# *.iml
139-
# *.ipr
140-
141-
# CMake
14298
cmake-build-*/
14399

144100
# Mongo Explorer plugin
@@ -156,31 +112,18 @@ out/
156112
# JIRA plugin
157113
atlassian-ide-plugin.xml
158114

159-
# Cursive Clojure plugin
160-
.idea/replstate.xml
161-
162115
# Crashlytics plugin (for Android Studio and IntelliJ)
163116
com_crashlytics_export_strings.xml
164117
crashlytics.properties
165118
crashlytics-build.properties
166119
fabric.properties
167120

168-
# Editor-based Rest Client
169-
.idea/httpRequests
170121

171-
# Android studio 3.1+ serialized cache file
172-
.idea/caches/build_file_checksums.ser
173-
174-
# -----------------------------------------------------------------------------
175-
# VSCode
176-
# -----------------------------------------------------------------------------
177-
178-
.vscode/*
179-
!.vscode/settings.json
180-
!.vscode/tasks.json
181-
!.vscode/launch.json
182-
!.vscode/extensions.json
183122
*.code-workspace
184123

185124
# Local History for Visual Studio Code
186125
.history/
126+
127+
128+
/.vscode/
129+
/.idea/

.idea/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/ULTRA.iml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/cli.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,10 @@ void Settings::prepare_settings() {
111111
"Do not output BED or JSON annotation")
112112
->group("Output");
113113

114+
app.add_flag("--disable_summary", this->disable_summary,
115+
"Disable summary statistics")
116+
->group("Output");
117+
114118
app.add_flag(
115119
"--fdr", this->estimate_fdr,
116120
"Estimate the False Discovery rate (runtime will be twice as long)")
@@ -207,6 +211,7 @@ void Settings::prepare_settings() {
207211

208212
app.add_option("--tune_fdr", this->tune_fdr,
209213
"FDR to be tuned against (see README)")
214+
->default_val(this->tune_fdr)
210215
->group("Parameter Tuning");
211216

212217
app.add_flag("--tune_only", this->tune_only,

0 commit comments

Comments
 (0)