Skip to content

Commit

Permalink
silenced warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ens-ftricomi committed May 28, 2024
1 parent 1148f32 commit 8c4c39b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
7 changes: 6 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,12 @@
"undoc-members": False,
"exclude-members": "__weakref__",
}

suppress_warnings = [
'docstring',
'ref.citation', # Example: Suppress warnings about citations
'image.nonlocal_uri', # Example: Suppress warnings about non-local images
# Add other warnings to suppress as needed
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
The STAR (Spliced Transcripts Alignment to a Reference) alignment tool is widely used
in genomics research for aligning RNA-seq data to a reference genome.
Dobin A, Davis CA, Schlesinger F, et al. STAR: ultrafast universal RNA-seq aligner.
Bioinformatics. 2013;29(1):15-21. doi:10.1093/bioinformatics/bts635
"""The STAR (Spliced Transcripts Alignment to a Reference) alignment tool is widely used
in genomics research for aligning RNA-seq data to a reference genome.
Dobin A, Davis CA, Schlesinger F, et al. STAR: ultrafast universal RNA-seq aligner.
Bioinformatics. 2013;29(1):15-21. doi:10.1093/bioinformatics/bts635
"""
__all__ = ["run_star", "subsample_transcriptomic_data", "run_trimming"]

Expand Down

0 comments on commit 8c4c39b

Please sign in to comment.