Skip to content
Snippets Groups Projects
Commit 27d31ee7 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Add license info to python scripts

parent c9c308a8
Branches
Tags
2 merge requests!95Update rna-seq.nf,!92Resolve "Server changing... need to change .insert calls"
#!/usr/bin/env python3
#delete_entry.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse
from deriva.core import ErmrestCatalog, get_credential, BaseCLI
import sys
......@@ -34,4 +42,4 @@ if __name__ == '__main__':
cli.remove_options(["--config-file"])
host = args.host
credentials = {"cookie": args.cookie}
main(host, 2, credentials)
\ No newline at end of file
main(host, 2, credentials)
#!/usr/bin/env python3
#extract_ref_data.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse
import pandas as pd
......
......@@ -2,7 +2,7 @@
#generate_references.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/BICF/Astrocyte/cellranger_count/blob/develop/LICENSE)
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
......
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# * --------------------------------------------------------------------------
# * Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/master/LICENSE)
# * --------------------------------------------------------------------------
#
#generate_versions.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
'''Make YAML of software versions.'''
......
#!/usr/bin/env python3
#parse_meta.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse
import pandas as pd
......
#!/usr/bin/env python3
#tin_hist.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse
import pandas as pd
......
#!/usr/bin/env python3
#upload_execution_run.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse
from deriva.core import ErmrestCatalog, get_credential, BaseCLI
import sys
......@@ -58,4 +66,4 @@ if __name__ == '__main__':
cli.remove_options(["--config-file"])
host = args.host
credentials = {"cookie": args.cookie}
main(host, 2, credentials)
\ No newline at end of file
main(host, 2, credentials)
#!/usr/bin/env python3
#upload_input_bag.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse
from deriva.core import ErmrestCatalog, get_credential, BaseCLI
import sys
......@@ -43,4 +51,4 @@ if __name__ == '__main__':
cli.remove_options(["--config-file"])
host = args.host
credential = {"cookie": args.cookie}
main(host, 2, credential)
\ No newline at end of file
main(host, 2, credential)
#!/usr/bin/env python3
#upload_output_bag.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse
from deriva.core import ErmrestCatalog, get_credential, BaseCLI
import sys
......@@ -54,4 +62,4 @@ if __name__ == '__main__':
cli.remove_options(["--config-file"])
host = args.host
credential = {"cookie": args.cookie}
main(host, 2, credential)
\ No newline at end of file
main(host, 2, credential)
#!/usr/bin/env python3
#upload_qc.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse
from deriva.core import ErmrestCatalog, get_credential, BaseCLI
import sys
......@@ -72,4 +80,4 @@ if __name__ == '__main__':
cli.remove_options(["--config-file"])
host = args.host
credentials = {"cookie": args.cookie}
main(host, 2, credentials)
\ No newline at end of file
main(host, 2, credentials)
#!/usr/bin/env python3
#utils.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import shlex
import logging
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment